Skip to content

Commit 2e5751c

Browse files
authored
Fix typo (#628)
1 parent d96bd55 commit 2e5751c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

openapi/openapiv2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13252,7 +13252,7 @@
1325213252
"priorityKey": {
1325313253
"type": "integer",
1325413254
"format": "int32",
13255-
"description": "Priority key is a positive integer from 1 to n, where smaller integers\ncorrespond to higher priorities (tasks run sooner). In general, tasks in\na queue should be processed in close to priority order, although small\ndeviations are possible.\n\nThe maximum priority value (minimum priority) is determined by server\nconfiguration, and defaults to 5.\n\nIf priority is not present (or zero), then the effective priority will be\nthe default priority, which is is calculated by (min+max)/2. With the\ndefault max of 5, and min of 1, that comes out to 3."
13255+
"description": "Priority key is a positive integer from 1 to n, where smaller integers\ncorrespond to higher priorities (tasks run sooner). In general, tasks in\na queue should be processed in close to priority order, although small\ndeviations are possible.\n\nThe maximum priority value (minimum priority) is determined by server\nconfiguration, and defaults to 5.\n\nIf priority is not present (or zero), then the effective priority will be\nthe default priority, which is calculated by (min+max)/2. With the\ndefault max of 5, and min of 1, that comes out to 3."
1325613256
},
1325713257
"fairnessKey": {
1325813258
"type": "string",

openapi/openapiv3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10015,7 +10015,7 @@ components:
1001510015
configuration, and defaults to 5.
1001610016

1001710017
If priority is not present (or zero), then the effective priority will be
10018-
the default priority, which is is calculated by (min+max)/2. With the
10018+
the default priority, which is calculated by (min+max)/2. With the
1001910019
default max of 5, and min of 1, that comes out to 3.
1002010020
format: int32
1002110021
fairnessKey:

temporal/api/common/v1/message.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ message Priority {
280280
// configuration, and defaults to 5.
281281
//
282282
// If priority is not present (or zero), then the effective priority will be
283-
// the default priority, which is is calculated by (min+max)/2. With the
283+
// the default priority, which is calculated by (min+max)/2. With the
284284
// default max of 5, and min of 1, that comes out to 3.
285285
int32 priority_key = 1;
286286

0 commit comments

Comments
 (0)