diff --git a/README.md b/README.md
index 90c2cbf..2d13479 100644
--- a/README.md
+++ b/README.md
@@ -4037,11 +4037,11 @@ Inspired by RehanSaeed/
Force redirection (even if the noclobber option is set). This will forcibly overwrite an existing file.
|
-"" |
-Double quotes protects the text inside them from being split into multiple words or arguments, yet allow substitutions to occur, meaning most other special characters is usually prevented. |
+" |
+Partial quoting [double quotes]. Protects the text inside them from being split into multiple words or arguments, yet allow substitutions to occur, meaning most other special characters is usually prevented. |
-' ' |
-Single quotes protects the text inside them so that it has a literal meaning. This is a stronger form of quoting than double quotes. |
+' |
+Full quoting [single quotes]. Protects the text inside them so that it has a literal meaning. This is a stronger form of quoting than double quotes. |