summaryrefslogtreecommitdiffstats
path: root/docs/content/manual/v1.6/manual.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/manual/v1.6/manual.yml')
-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 54feeca3..7e62adeb 100644
--- a/docs/content/manual/v1.6/manual.yml
+++ b/docs/content/manual/v1.6/manual.yml
@@ -2166,7 +2166,7 @@ sections:
# Repeat an expression until it raises "break" as an
# error, then stop repeating without re-raising the error.
# But if the error caught is not "break" then re-raise it.
- try repeat(exp) catch .=="break" then empty else error;
+ try repeat(exp) catch if .=="break" then empty else error
jq has a syntax for named lexical labels to "break" or "go (back) to":