From b94c6224a5030fdd5340d84f8b8f9bb424fc5974 Mon Sep 17 00:00:00 2001 From: Eric Gilmore Date: Thu, 8 Feb 2024 16:01:38 -0800 Subject: [PATCH] Fixing a couple typos the linter found for us. --- src/params/index.ts | 2 +- src/params/types.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/params/index.ts b/src/params/index.ts index 15ae9ebd7..285991394 100644 --- a/src/params/index.ts +++ b/src/params/index.ts @@ -111,7 +111,7 @@ export const storageBucket: Param = new InternalExpression( /** * Declares a secret param, that will persist values only in Cloud Secret Manager. - * Secrets are stored interally as bytestrings. Use `ParamOptions.as` to provide type + * Secrets are stored internally as bytestrings. Use `ParamOptions.as` to provide type * hinting during parameter resolution. * * @param name The name of the environment variable to use to load the parameter. diff --git a/src/params/types.ts b/src/params/types.ts index 42292d767..0d0413413 100644 --- a/src/params/types.ts +++ b/src/params/types.ts @@ -175,7 +175,7 @@ type ParamValueType = "string" | "list" | "boolean" | "int" | "float" | "secret" /** Create a select input from a series of values. */ export function select(options: T[]): SelectInput; -/** Create a select input from a map of labels to vaues. */ +/** Create a select input from a map of labels to values. */ export function select(optionsWithLabels: Record): SelectInput; /** Create a select input from a series of values or a map of labels to values */