Use consistent apostrophes in markdown files

This commit is contained in:
Peter Neave
2025-02-28 11:46:39 +11:00
parent 3947c4de28
commit 425c9821e0
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
# Error handling
Most errors arent serious enough to require the program to stop entirely.
Sometimes, when a function fails, its for a reason that you can easily interpret and respond to.
For example, if you try to open a file and that operation fails because the file doesnt exist, you might want to create the file instead of terminating the process.
Most errors aren't serious enough to require the program to stop entirely.
Sometimes, when a function fails, it's for a reason that you can easily interpret and respond to.
For example, if you try to open a file and that operation fails because the file doesn't exist, you might want to create the file instead of terminating the process.
## Further information