From 95f0c607d5431b3a4757b6faba9e07546907af32 Mon Sep 17 00:00:00 2001 From: oct8l Date: Thu, 9 May 2019 10:14:58 -0500 Subject: [PATCH] Fix/change two instances of "lowercase" Signed-off-by: oct8l --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 015268f..38b4546 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Ctrl + x + Ctrl + e : launch editor define by $EDITOR Esc + u # converts text from cursor to the end of the word to uppercase. Esc + l -# converts text from cursor to the end of the word to case. +# converts text from cursor to the end of the word to lowercase. Esc + c # converts letter under the cursor to uppercase. ``` @@ -1053,7 +1053,7 @@ echo ${var[@]#0} grep ${test// /\\\|} file.txt # turning the space into 'or' (\|) in grep ``` -##### To change the case of the string stored in the variable to lower case (Parameter Expansion) +##### To change the case of the string stored in the variable to lowercase (Parameter Expansion) ```bash var=HelloWorld echo ${var,,}