Change "people's" to "peoples'", for the sake of proper English grammar.

wileyhy
2024-10-05 23:55:27 -07:00
parent 3f237e8062
commit 9f4b1c283d

@@ -3,17 +3,17 @@
### Problematic code: ### Problematic code:
```sh ```sh
echo 'Nothing so needs reforming as other people's habits.' echo 'Nothing so needs reforming as other peoples' habits.'
``` ```
### Correct code: ### Correct code:
```sh ```sh
echo 'Nothing so needs reforming as other people'\''s habits.' echo 'Nothing so needs reforming as other peoples'\'' habits.'
``` ```
or or
```sh ```sh
echo "Nothing so needs reforming as other people's habits." echo "Nothing so needs reforming as other peoples' habits."
``` ```
### Rationale: ### Rationale: