From 4cd90d4d9625c465778361e8c13698ced26a6e11 Mon Sep 17 00:00:00 2001 From: Branislav Havrila Date: Thu, 16 Nov 2023 18:29:46 +0100 Subject: [PATCH] Fix a typo in ch25_vimscript_basic_data_types.md --- ch25_vimscript_basic_data_types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch25_vimscript_basic_data_types.md b/ch25_vimscript_basic_data_types.md index 56375ee..93babef 100644 --- a/ch25_vimscript_basic_data_types.md +++ b/ch25_vimscript_basic_data_types.md @@ -651,7 +651,7 @@ To check the length of a dictionary, use `len()`. ``` :let mealPlans = #{breakfast: "waffles", lunch: "pancakes", dinner: "donuts"} -:echo len(meaPlans) +:echo len(mealPlans) " returns 3 ```