Skip to content

Commit

Permalink
Fix: typo, missing space. (#165)
Browse files Browse the repository at this point in the history
Signed-off-by: dblock <[email protected]>
  • Loading branch information
dblock authored Nov 10, 2023
1 parent 521f4a2 commit 3775ec6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions OpenSearch.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -22364,7 +22364,7 @@
{
"name": "op_type",
"in": "query",
"description": "Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create`for requests without an explicit document ID.",
"description": "Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create` for requests without an explicit document ID.",
"schema": {
"$ref": "#/components/schemas/OpType"
}
Expand Down Expand Up @@ -22961,7 +22961,7 @@
{
"name": "op_type",
"in": "query",
"description": "Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create`for requests without an explicit document ID.",
"description": "Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create` for requests without an explicit document ID.",
"schema": {
"$ref": "#/components/schemas/OpType"
}
Expand Down Expand Up @@ -23109,7 +23109,7 @@
{
"name": "op_type",
"in": "query",
"description": "Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create`for requests without an explicit document ID.",
"description": "Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create` for requests without an explicit document ID.",
"schema": {
"$ref": "#/components/schemas/OpType"
}
Expand Down Expand Up @@ -31512,7 +31512,7 @@
},
"OpType": {
"type": "string",
"description": "Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create`for requests without an explicit document ID.",
"description": "Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create` for requests without an explicit document ID.",
"enum": [
"index",
"create"
Expand Down
2 changes: 1 addition & 1 deletion model/common_enums.smithy
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ enum NodesStatLevel {
SHARDS = "shards"
}

@documentation("Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create`for requests without an explicit document ID.")
@documentation("Explicit operation type. Defaults to `index` for requests with an explicit document ID, and to `create` for requests without an explicit document ID.")
enum OpType {
INDEX = "index"
CREATE = "create"
Expand Down

0 comments on commit 3775ec6

Please sign in to comment.