Skip to content

Commit

Permalink
Fix typo: sections -> seconds. (#1321)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaibolay committed Dec 2, 2022
1 parent 0aa6d6b commit 632d6b5
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/v2/options.ts
Expand Up @@ -110,7 +110,7 @@ export interface GlobalOptions {
memory?: MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/alerts/alerts.ts
Expand Up @@ -103,7 +103,7 @@ export interface FirebaseAlertOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
* A value of null restores the default of 60s
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/alerts/appDistribution.ts
Expand Up @@ -113,7 +113,7 @@ export interface AppDistributionOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/alerts/crashlytics.ts
Expand Up @@ -193,7 +193,7 @@ export interface CrashlyticsOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/database.ts
Expand Up @@ -114,7 +114,7 @@ export interface ReferenceOptions<Ref extends string = string> extends options.E
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/eventarc.ts
Expand Up @@ -78,7 +78,7 @@ export interface EventarcTriggerOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/https.ts
Expand Up @@ -71,7 +71,7 @@ export interface HttpsOptions extends Omit<GlobalOptions, "region"> {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/identity.ts
Expand Up @@ -80,7 +80,7 @@ export interface BlockingOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/pubsub.ts
Expand Up @@ -171,7 +171,7 @@ export interface PubSubOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/storage.ts
Expand Up @@ -219,7 +219,7 @@ export interface StorageOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/tasks.ts
Expand Up @@ -76,7 +76,7 @@ export interface TaskQueueOptions extends options.EventHandlerOptions {
memory?: options.MemoryOption | Expression<number> | ResetValue;

/**
* Timeout for the function in sections, possible values are 0 to 540.
* Timeout for the function in seconds, possible values are 0 to 540.
* HTTPS functions can specify a higher timeout.
*
* @remarks
Expand Down

0 comments on commit 632d6b5

Please sign in to comment.