Fix typo in NullValueStrategy doc comment (#52608)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/52608

See title

Changelog: [Internal]

Reviewed By: fabriziocucci

Differential Revision: D78339009

fbshipit-source-id: 70d0e73a38826c2c6bc3425f0a863699b3ed50d3
This commit is contained in:
Nick Lefever
2025-07-15 08:31:21 -07:00
committed by Facebook GitHub Bot
parent 42b8921d91
commit eca6c1b965
@@ -31,7 +31,7 @@ enum class NullValueStrategy {
* In case key is missing in source, value from patch will be ignored.
*
* Example:
* source: {"key 1": "value 1"}
* source: {"key": "value 1"}
* patch: {"key": "new value 1", "key 2": "new value 2"}
* returned: {"key": "new value 1"}
*/