From 7ce628277e70dea115dc80ce565d3c8660251d9e Mon Sep 17 00:00:00 2001 From: David Vacca Date: Fri, 14 Mar 2025 12:46:24 -0700 Subject: [PATCH] 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 --- packages/react-native/scripts/featureflags/types.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-native/scripts/featureflags/types.js b/packages/react-native/scripts/featureflags/types.js index 01e95fc5d9f..c3cabb80a45 100644 --- a/packages/react-native/scripts/featureflags/types.js +++ b/packages/react-native/scripts/featureflags/types.js @@ -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,