From 9f4b1c283dc7ab5b3ce038c8c8000319fa2cb192 Mon Sep 17 00:00:00 2001 From: wileyhy <84648683+wileyhy@users.noreply.github.com> Date: Sat, 5 Oct 2024 23:55:27 -0700 Subject: [PATCH] Change "people's" to "peoples'", for the sake of proper English grammar. --- SC1011.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: