diff --git a/src/params/index.ts b/src/params/index.ts index 3f60dcbd4..fadd36b54 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 */