summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoritchyny <itchyny@cybozu.co.jp>2023-06-06 06:03:58 +0900
committeritchyny <itchyny@cybozu.co.jp>2023-06-06 06:03:58 +0900
commit4e9a1a80376491f21e623e5d10b51bf0935160de (patch)
tree785f0d90e4f84dea174f767925ea20697572f9c3
parenta5ba98a55cbe179787e9e58f4c8670e9d1c9f59b (diff)
Show missing backslash in manual (#2492)
-rw-r--r--docs/content/manual/manual.yml2
-rw-r--r--docs/content/manual/v1.5/manual.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml
index ab2266b9..7628f264 100644
--- a/docs/content/manual/manual.yml
+++ b/docs/content/manual/manual.yml
@@ -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]*).*")'
diff --git a/docs/content/manual/v1.5/manual.yml b/docs/content/manual/v1.5/manual.yml
index 15b2e849..d758a1f4 100644
--- a/docs/content/manual/v1.5/manual.yml
+++ b/docs/content/manual/v1.5/manual.yml
@@ -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]*).*")'