From 0349a70321f64251d86802f62358a3c1df0c9e7f Mon Sep 17 00:00:00 2001 From: Anton Bilous Date: Wed, 23 Apr 2025 14:39:18 +0300 Subject: [PATCH] Fix typo in `language` docs --- doc_src/language.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc_src/language.rst b/doc_src/language.rst index 41d8ed069..173aef660 100644 --- a/doc_src/language.rst +++ b/doc_src/language.rst @@ -788,11 +788,10 @@ Some more examples:: # Output is 1 2 3 echo $$var[2][3] - # $var[1] is listtwo, third element of that is 6, output is 6 + # $var[2] is listtwo, third element of that is 6, output is 6 echo $$var[..][2] - # The second element of every variable, so output is - # 2 5 + # The second element of every variable, so output is 2 5 Variables as command ''''''''''''''''''''