diff --git a/doc_src/tutorial.hdr b/doc_src/tutorial.hdr
index ca36a7cb1..d10e03077 100644
--- a/doc_src/tutorial.hdr
+++ b/doc_src/tutorial.hdr
@@ -355,8 +355,8 @@ You can iterate over a list (or a slice) with a for loop:
Lists adjacent to other lists or strings are expanded as cartesian products unless quoted (see Variable expansion):
\fish{cli-dark}
->_ set -l a 1 2 3
->_ set -l 1 a b c
+>_ set a 1 2 3
+>_ set 1 a b c
>_ echo $a$1
1a 2a 3a 1b 2b 3b 1c 2c 3c
>_ echo $a" banana"