Skip to content

Commit

Permalink
Show missing backslash in manual (#2492)
Browse files Browse the repository at this point in the history
  • Loading branch information
itchyny committed Jun 5, 2023
1 parent a5ba98a commit 4e9a1a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/manual/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2452,7 +2452,7 @@ sections:
be a jq string, and may contain references to named captures. The
named captures are, in effect, presented as a JSON object (as
constructed by `capture`) to `tostring`, so a reference to a captured
variable named "x" would take the form: "\(.x)".
variable named "x" would take the form: `"\(.x)"`.
example:
- program: 'sub("^[^a-z]*(?<x>[a-z]*).*")'
Expand Down
2 changes: 1 addition & 1 deletion docs/content/manual/v1.5/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2115,7 +2115,7 @@ sections:
be a jq string, and may contain references to named captures. The
named captures are, in effect, presented as a JSON object (as
constructed by `capture`) to `tostring`, so a reference to a captured
variable named "x" would take the form: "\(.x)".
variable named "x" would take the form: `"\(.x)"`.
example:
- program: 'sub("^[^a-z]*(?<x>[a-z]*).*")'
Expand Down

0 comments on commit 4e9a1a8

Please sign in to comment.