summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoritchyny <itchyny@cybozu.co.jp>2023-06-07 21:04:54 +0900
committeritchyny <itchyny@cybozu.co.jp>2023-06-07 21:05:03 +0900
commitfd9da6647c0fa619f03464fe37a4a10b70147e73 (patch)
treee756f86e58a1f5077a3291266bb4dd11388a3c25
parente066172aa19b2c3269955b4cd684c43cd4ce9bfd (diff)
docs: Fix example outputs added in #2391
-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: |