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:
```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: