Fix typos on featureflags/types.js (#50037)

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

Fix typos on featureflags/types.js

changelog: [internal] internal

Reviewed By: shwanton

Differential Revision: D71210260

fbshipit-source-id: 4a4eabf7ab6b73dca2bdcb42dcd36f2168b2f0e0
This commit is contained in:
David Vacca
2025-03-14 12:46:24 -07:00
committed by Facebook GitHub Bot
parent c6be72a28d
commit 7ce628277e
+2 -2
View File
@@ -18,7 +18,7 @@ export type FeatureFlagDefinitions = $ReadOnly<{
/**
* OSSReleaseStageValue is used to determine the value of a feature flag in different release stages:
* - none: the value of the feature flag will be `defaultValue` on all releases.
* - experimental: the value of the feature flag will be `expectedReleaseValue` on experimental releases and `defaultValue` on canaray and stable releases.
* - experimental: the value of the feature flag will be `expectedReleaseValue` on experimental releases and `defaultValue` on canary and stable releases.
* - canary: the value of the feature flag will be `expectedReleaseValue` on experimental and canary releases and `defaultValue` on stable releases.
* - stable: the value of the feature flag will be `expectedReleaseValue` on all releases.
*/
@@ -55,7 +55,7 @@ export type FeatureFlagMetadata =
| $ReadOnly<{
purpose: 'experimentation',
/**
* Aproximate date when the flag was added.
* Approximate date when the flag was added.
* Used to help prioritize feature flags that need to be cleaned up.
*/
dateAdded: string,