Skip to content

Commit

Permalink
docs: Added double quotes to /abci_query path param (cometbft#1015)
Browse files Browse the repository at this point in the history
Closes cometbft#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
  • Loading branch information
stevenferrer authored Jun 28, 2023
1 parent b1919ec commit f6f13b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rpc/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ paths:
required: true
schema:
type: string
example: "tx.height=1000"
example: '"tx.height=1000"'
- in: query
name: prove
description: Include proofs of the transactions inclusion in the block
Expand Down Expand Up @@ -945,7 +945,7 @@ paths:
required: true
schema:
type: string
example: "block.height > 1000 AND valset.changed > 0"
example: '"block.height > 1000 AND valset.changed > 0"'
- in: query
name: page
description: "Page number (1-based)"
Expand Down Expand Up @@ -1061,7 +1061,7 @@ paths:
required: true
schema:
type: string
example: "/a/b/c"
example: '"/a/b/c"'
- in: query
name: data
description: Data
Expand Down

0 comments on commit f6f13b1

Please sign in to comment.