Skip to content

Commit

Permalink
docs: Added double quotes to /abci_query path param (tendermint#1015) (
Browse files Browse the repository at this point in the history
…tendermint#1047)

Closes tendermint#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

(cherry picked from commit f6f13b1)

Co-authored-by: Steven Ferrer <steven.r.ferrer@gmail.com>
  • Loading branch information
mergify[bot] and stevenferrer committed Jun 28, 2023
1 parent 3452373 commit dde9946
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 @@ -825,7 +825,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 @@ -896,7 +896,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 @@ -1020,7 +1020,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 dde9946

Please sign in to comment.