From a299d82a6f92e0c65b56a9c2aa7e6559d8a0a461 Mon Sep 17 00:00:00 2001 From: John Gardner Date: Wed, 22 Dec 2021 18:45:15 +1100 Subject: [PATCH] Fix caps and missing hyphens --- SC1016.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SC1016.md b/SC1016.md index 1977e25..161a61b 100644 --- a/SC1016.md +++ b/SC1016.md @@ -14,17 +14,17 @@ echo 'hello world' ### Rationale: -Some software, like OS X, Word and WordPress, may automatically replace your regular quotes with slanted Unicode quotes. Try deleting and retyping them, and/or disable “smart quotes” in your editor or OS. +Some software, like macOS, Microsoft Word, and WordPress, may automatically replace your regular quotes with slanted Unicode quotes. Try deleting and retyping them, and/or disable “smart quotes” in your editor or OS. ### Status: -This error was retired after 0.4.5. In this version and earlier, ShellCheck parsed slanted quotes as a valid double quote. This meant that the warning could not simply be ignored. It has since been replaced by [[SC1110]] (outside quotes) and [[SC1112]] (inside single quotes). +This error was retired after 0.4.5. In this version and earlier, ShellCheck parsed slanted quotes as a valid double-quote. This meant that the warning could not simply be ignored. It has since been replaced by [[SC1110]] (outside quotes) and [[SC1112]] (inside single-quotes). ### Exceptions -If you want to use typographic single quotes, you can put them in double quotes (or typographic double quotes in single quotes) to make shellcheck ignore them, e.g., +If you want to use typographic single-quotes, you can put them in double-quotes (or typographic double-quotes in single-quotes) to make ShellCheck ignore them, e.g., ```sh printf "Warning: ‘wakeonlan’ is not installed.\n" -``` \ No newline at end of file +```