Skip to content

Commit b0b7eab

Browse files
egilmoreztaeold
andauthored
Fixing a couple typos the linter found for us. (#1521)
Co-authored-by: Daniel Lee <danielylee@google.com>
1 parent 38e148c commit b0b7eab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/params/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const storageBucket: Param<string> = new InternalExpression(
111111

112112
/**
113113
* Declares a secret param, that will persist values only in Cloud Secret Manager.
114-
* Secrets are stored interally as bytestrings. Use `ParamOptions.as` to provide type
114+
* Secrets are stored internally as bytestrings. Use `ParamOptions.as` to provide type
115115
* hinting during parameter resolution.
116116
*
117117
* @param name The name of the environment variable to use to load the parameter.

src/params/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ type ParamValueType = "string" | "list" | "boolean" | "int" | "float" | "secret"
175175
/** Create a select input from a series of values. */
176176
export function select<T>(options: T[]): SelectInput<T>;
177177

178-
/** Create a select input from a map of labels to vaues. */
178+
/** Create a select input from a map of labels to values. */
179179
export function select<T>(optionsWithLabels: Record<string, T>): SelectInput<T>;
180180

181181
/** Create a select input from a series of values or a map of labels to values */

0 commit comments

Comments
 (0)