From 3e6bbf7c2036ab6d3bca1cc72c0648d68960ff67 Mon Sep 17 00:00:00 2001 From: Bonnie I-Man Ng Date: Wed, 15 Mar 2023 10:02:31 +0000 Subject: [PATCH] fix issue #36 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d5c80a..d1132f6 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ echo '$foo' # single quotes within double quotes will not cancel expansion and will be part of the output echo "'$foo'" # 'bar' -# doubled single quotes act as double quotes making variables expand +# doubled single quotes act as if there are no quotes at all echo ''$foo'' # bar ```