diff --git a/SC1011.md b/SC1011.md index c992dfb..650d773 100644 --- a/SC1011.md +++ b/SC1011.md @@ -3,17 +3,17 @@ ### Problematic code: ```sh -echo 'Nothing so needs reforming as other people's habits.' +echo 'Nothing so needs reforming as other peoples' habits.' ``` ### Correct code: ```sh -echo 'Nothing so needs reforming as other people'\''s habits.' +echo 'Nothing so needs reforming as other peoples'\'' habits.' ``` or ```sh -echo "Nothing so needs reforming as other people's habits." +echo "Nothing so needs reforming as other peoples' habits." ``` ### Rationale: