Skip to content

Commit 632d6b5

Browse files
authored
Fix typo: sections -> seconds. (#1321)
1 parent 0aa6d6b commit 632d6b5

11 files changed

+11
-11
lines changed

src/v2/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export interface GlobalOptions {
110110
memory?: MemoryOption | Expression<number> | ResetValue;
111111

112112
/**
113-
* Timeout for the function in sections, possible values are 0 to 540.
113+
* Timeout for the function in seconds, possible values are 0 to 540.
114114
* HTTPS functions can specify a higher timeout.
115115
*
116116
* @remarks

src/v2/providers/alerts/alerts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export interface FirebaseAlertOptions extends options.EventHandlerOptions {
103103
memory?: options.MemoryOption | Expression<number> | ResetValue;
104104

105105
/**
106-
* Timeout for the function in sections, possible values are 0 to 540.
106+
* Timeout for the function in seconds, possible values are 0 to 540.
107107
* HTTPS functions can specify a higher timeout.
108108
* A value of null restores the default of 60s
109109
* The minimum timeout for a gen 2 function is 1s. The maximum timeout for a

src/v2/providers/alerts/appDistribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export interface AppDistributionOptions extends options.EventHandlerOptions {
113113
memory?: options.MemoryOption | Expression<number> | ResetValue;
114114

115115
/**
116-
* Timeout for the function in sections, possible values are 0 to 540.
116+
* Timeout for the function in seconds, possible values are 0 to 540.
117117
* HTTPS functions can specify a higher timeout.
118118
*
119119
* @remarks

src/v2/providers/alerts/crashlytics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export interface CrashlyticsOptions extends options.EventHandlerOptions {
193193
memory?: options.MemoryOption | Expression<number> | ResetValue;
194194

195195
/**
196-
* Timeout for the function in sections, possible values are 0 to 540.
196+
* Timeout for the function in seconds, possible values are 0 to 540.
197197
* HTTPS functions can specify a higher timeout.
198198
*
199199
* @remarks

src/v2/providers/database.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export interface ReferenceOptions<Ref extends string = string> extends options.E
114114
memory?: options.MemoryOption | Expression<number> | ResetValue;
115115

116116
/**
117-
* Timeout for the function in sections, possible values are 0 to 540.
117+
* Timeout for the function in seconds, possible values are 0 to 540.
118118
* HTTPS functions can specify a higher timeout.
119119
*
120120
* @remarks

src/v2/providers/eventarc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export interface EventarcTriggerOptions extends options.EventHandlerOptions {
7878
memory?: options.MemoryOption | Expression<number> | ResetValue;
7979

8080
/**
81-
* Timeout for the function in sections, possible values are 0 to 540.
81+
* Timeout for the function in seconds, possible values are 0 to 540.
8282
* HTTPS functions can specify a higher timeout.
8383
*
8484
* @remarks

src/v2/providers/https.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export interface HttpsOptions extends Omit<GlobalOptions, "region"> {
7171
memory?: options.MemoryOption | Expression<number> | ResetValue;
7272

7373
/**
74-
* Timeout for the function in sections, possible values are 0 to 540.
74+
* Timeout for the function in seconds, possible values are 0 to 540.
7575
* HTTPS functions can specify a higher timeout.
7676
*
7777
* @remarks

src/v2/providers/identity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export interface BlockingOptions {
8080
memory?: options.MemoryOption | Expression<number> | ResetValue;
8181

8282
/**
83-
* Timeout for the function in sections, possible values are 0 to 540.
83+
* Timeout for the function in seconds, possible values are 0 to 540.
8484
* HTTPS functions can specify a higher timeout.
8585
*
8686
* @remarks

src/v2/providers/pubsub.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export interface PubSubOptions extends options.EventHandlerOptions {
171171
memory?: options.MemoryOption | Expression<number> | ResetValue;
172172

173173
/**
174-
* Timeout for the function in sections, possible values are 0 to 540.
174+
* Timeout for the function in seconds, possible values are 0 to 540.
175175
* HTTPS functions can specify a higher timeout.
176176
*
177177
* @remarks

src/v2/providers/storage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export interface StorageOptions extends options.EventHandlerOptions {
219219
memory?: options.MemoryOption | Expression<number> | ResetValue;
220220

221221
/**
222-
* Timeout for the function in sections, possible values are 0 to 540.
222+
* Timeout for the function in seconds, possible values are 0 to 540.
223223
* HTTPS functions can specify a higher timeout.
224224
*
225225
* @remarks

src/v2/providers/tasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export interface TaskQueueOptions extends options.EventHandlerOptions {
7676
memory?: options.MemoryOption | Expression<number> | ResetValue;
7777

7878
/**
79-
* Timeout for the function in sections, possible values are 0 to 540.
79+
* Timeout for the function in seconds, possible values are 0 to 540.
8080
* HTTPS functions can specify a higher timeout.
8181
*
8282
* @remarks

0 commit comments

Comments
 (0)