summaryrefslogtreecommitdiff
path: root/exercises/13_error_handling/README.md
diff options
context:
space:
mode:
authorPeter Neave <peter.neave@purple.telstra.com>2025-02-28 11:46:39 +1100
committerPeter Neave <peter.neave@purple.telstra.com>2025-02-28 11:46:39 +1100
commit425c9821e0ef2d69f5b59750a8fc444165d64689 (patch)
treec095682da391e2fd4be6905732505fc55c593e01 /exercises/13_error_handling/README.md
parent3947c4de284cb82945055a0fe802c2755e951bb9 (diff)
Use consistent apostrophes in markdown files
Diffstat (limited to 'exercises/13_error_handling/README.md')
-rw-r--r--exercises/13_error_handling/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/exercises/13_error_handling/README.md b/exercises/13_error_handling/README.md
index 3b21f2b..9b6674b 100644
--- a/exercises/13_error_handling/README.md
+++ b/exercises/13_error_handling/README.md
@@ -1,8 +1,8 @@
# Error handling
-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.
+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