Skip to content

Commit

Permalink
Fix the rendering of the RESP documentation for the INFO command (#2676)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwertzguy authored Mar 7, 2024
1 parent 4502975 commit c4a2ea1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions resp2_replies.json
Original file line number Diff line number Diff line change
Expand Up @@ -601,9 +601,9 @@
"[Bulk string reply](/docs/reference/protocol-spec#bulk-strings): the value of the key after the increment."
],
"INFO": [
"[Bulk string reply](/docs/reference/protocol-spec#bulk-strings): a map of info fields, one field per line in the form of <field>:<value> where the value can be a comma separated map like <key>=<val>. Also contains section header lines starting with `#` and blank lines.",
"[Bulk string reply](/docs/reference/protocol-spec#bulk-strings): a map of info fields, one field per line in the form of `<field>:<value>` where the value can be a comma separated map like `<key>=<val>`. Also contains section header lines starting with `#` and blank lines.",
"",
"Lines can contain a section name (starting with a # character) or a property. All the properties are in the form of `field:value` terminated by `\r\n`."
"Lines can contain a section name (starting with a `#` character) or a property. All the properties are in the form of `field:value` terminated by `\\r\\n`."
],
"KEYS": [
"[Array reply](/docs/reference/protocol-spec#arrays): a list of keys matching _pattern_."
Expand Down
4 changes: 2 additions & 2 deletions resp3_replies.json
Original file line number Diff line number Diff line change
Expand Up @@ -601,9 +601,9 @@
"[Bulk string reply](/docs/reference/protocol-spec#bulk-strings): the value of the key after the increment."
],
"INFO": [
"[Bulk string reply](/docs/reference/protocol-spec#bulk-strings): a map of info fields, one field per line in the form of <field>:<value> where the value can be a comma separated map like <key>=<val>. Also contains section header lines starting with `#` and blank lines.",
"[Bulk string reply](/docs/reference/protocol-spec#bulk-strings): a map of info fields, one field per line in the form of `<field>:<value>` where the value can be a comma separated map like `<key>=<val>`. Also contains section header lines starting with `#` and blank lines.",
"",
"Lines can contain a section name (starting with a # character) or a property. All the properties are in the form of `field:value` terminated by `\r\n`."
"Lines can contain a section name (starting with a `#` character) or a property. All the properties are in the form of `field:value` terminated by `\\r\\n`."
],
"KEYS": [
"[Array reply](/docs/reference/protocol-spec#arrays): a list of keys matching _pattern_."
Expand Down

0 comments on commit c4a2ea1

Please sign in to comment.