diff --git a/SC1011.md b/SC1011.md index 650d773..1a5ce74 100644 --- a/SC1011.md +++ b/SC1011.md @@ -21,6 +21,18 @@ When writing a string in single-quotes, you have to make sure that any apostroph Escape them properly (see the correct code) or switch quotes to avoid the problem. + +### Additional options: +```sh +echo '...peoples\ habits.' +...peoples\ habits. +``` +```sh +$ echo $'...peoples\x27 habits.' +...peoples' habits. +``` + + ### Exceptions: None.