From fd9da6647c0fa619f03464fe37a4a10b70147e73 Mon Sep 17 00:00:00 2001 From: itchyny Date: Wed, 7 Jun 2023 21:04:54 +0900 Subject: [PATCH] docs: Fix example outputs added in #2391 --- docs/content/manual/manual.yml | 6 +++--- 1 file 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: |