Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f6f13b1

Browse files
authoredJun 28, 2023
docs: Added double quotes to /abci_query path param (celestiaorg#1015)
Closes celestiaorg#666 This PR adds double quotes to `path` param of `/abci_query` endpoint. --- #### PR checklist - [ ] Tests written/updated - [ ] Changelog entry added in `.changelog` (we use [unclog](https://github.com/informalsystems/unclog) to manage our changelog) - [ ] Updated relevant documentation (`docs/` or `spec/`) and code comments
1 parent b1919ec commit f6f13b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎rpc/openapi/openapi.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ paths:
882882
required: true
883883
schema:
884884
type: string
885-
example: "tx.height=1000"
885+
example: '"tx.height=1000"'
886886
- in: query
887887
name: prove
888888
description: Include proofs of the transactions inclusion in the block
@@ -945,7 +945,7 @@ paths:
945945
required: true
946946
schema:
947947
type: string
948-
example: "block.height > 1000 AND valset.changed > 0"
948+
example: '"block.height > 1000 AND valset.changed > 0"'
949949
- in: query
950950
name: page
951951
description: "Page number (1-based)"
@@ -1061,7 +1061,7 @@ paths:
10611061
required: true
10621062
schema:
10631063
type: string
1064-
example: "/a/b/c"
1064+
example: '"/a/b/c"'
10651065
- in: query
10661066
name: data
10671067
description: Data

0 commit comments

Comments
 (0)
Please sign in to comment.