From 80d1fae033dabdbbdeeb0ba5cb6e6dc6f32c87e6 Mon Sep 17 00:00:00 2001 From: Chris Estreich Date: Tue, 11 Mar 2025 14:27:18 -0700 Subject: [PATCH] Update src/shared/globalState.ts Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> --- src/shared/globalState.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/globalState.ts b/src/shared/globalState.ts index d3ddb10326..a3dbb2b710 100644 --- a/src/shared/globalState.ts +++ b/src/shared/globalState.ts @@ -5,7 +5,7 @@ export type { SecretKey, GlobalStateKey, ConfigurationKey, ConfigurationValues } /** * For convenience we'd like the `RooCodeAPI` to define `SecretKey` and `GlobalStateKey`, * but since it is a type definition file we can't export constants without some - * annoyances. In order to acheive proper type safety without using constants as + * annoyances. In order to achieve proper type safety without using constants as * in the type definition we use this clever Check<>Exhaustiveness pattern. * If you extend the `SecretKey` or `GlobalStateKey` types, you will need to * update the `SECRET_KEYS` and `GLOBAL_STATE_KEYS` arrays to include the new