From f70feaefaddb596ec586b328d7dd17a74ca60cf3 Mon Sep 17 00:00:00 2001 From: Victorhck Date: Fri, 9 Apr 2021 18:38:19 +0200 Subject: [PATCH] missing double quotes in ch24 --- ch24_vimscript_basic_data_types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch24_vimscript_basic_data_types.md b/ch24_vimscript_basic_data_types.md index 36ba073..98c5418 100644 --- a/ch24_vimscript_basic_data_types.md +++ b/ch24_vimscript_basic_data_types.md @@ -566,7 +566,7 @@ You can mutate multiple list items directly: :let favoriteFlavor = ["chocolate", "glazed", "plain"] :let favoriteFlavor[2:] = ["strawberry", "chocolate"] :echo favoriteFlavor -returns ['chocolate', 'glazed', 'strawberry', 'chocolate'] +" returns ['chocolate', 'glazed', 'strawberry', 'chocolate'] ``` ## Dictionary