Fix hyphenation

John Gardner
2021-12-22 18:30:00 +11:00
parent 06aab0caab
commit d0ad188871

@@ -17,10 +17,10 @@ echo "Nothing so needs reforming as other people's habits."
```
### Rationale:
When writing a string in single quotes, you have to make sure that any apostrophes in the text don't accidentally terminate the single quoted string prematurely.
When writing a string in single-quotes, you have to make sure that any apostrophes in the text don't accidentally terminate the single-quoted string prematurely.
Escape them properly (see the correct code) or switch quotes to avoid the problem.
### Exceptions:
None.
None.