summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzstadler <zeev.stadler@gmail.com>2023-06-06 00:03:07 +0300
committerGitHub <noreply@github.com>2023-06-06 06:03:07 +0900
commita5ba98a55cbe179787e9e58f4c8670e9d1c9f59b (patch)
tree7f9128fbc16ccefb3328c686ca21a22a7626433e
parentd57a96e3f7d8aaf66ff1a52c15e8c57341c1c959 (diff)
Show missing backslash in manual (#2492)
-rw-r--r--docs/content/manual/v1.6/manual.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/manual/v1.6/manual.yml b/docs/content/manual/v1.6/manual.yml
index 269e14eb..5376ff51 100644
--- a/docs/content/manual/v1.6/manual.yml
+++ b/docs/content/manual/v1.6/manual.yml
@@ -2361,7 +2361,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]*).*")'