summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/content/manual/manual.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/manual/manual.yml b/docs/content/manual/manual.yml
index fdaf5bec..489a1bb2 100644
--- a/docs/content/manual/manual.yml
+++ b/docs/content/manual/manual.yml
@@ -3186,11 +3186,11 @@ sections:
examples:
- program: .a = .b
input: '{"a": {"b": 10}, "b": 20}'
- output: '{"a":20,"b":20}'
+ output: ['{"a":20,"b":20}']
- program: .a |= .b
input: '{"a": {"b": 10}, "b": 20}'
- output: '{"a":10,"b":20}'
+ output: ['{"a":10,"b":20}']
- program: (.a, .b) = range(3)
input: 'null'
@@ -3201,7 +3201,7 @@ sections:
- program: (.a, .b) |= range(3)
input: 'null'
- output: '{"a":0,"b":0}'
+ output: ['{"a":0,"b":0}']
- title: Complex assignments
body: |