summaryrefslogtreecommitdiff
path: root/exercises/error_handling/README.md
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-03-30 09:19:20 +0000
committerGitHub <noreply@github.com>2023-03-30 09:19:20 +0000
commit362c1b0d113ad9a5bd4d1dee8086757efd060785 (patch)
tree047720c84c6cb56448e1de3c690f6d17efa9f53f /exercises/error_handling/README.md
parentfbec31184438c41cd9d1b580cab7f9259a2e5ecf (diff)
parent1db646474e84fcf1c87118efb9ef0f6c3a96512c (diff)
Merge pull request #1450 from guoard/patch-2
docs(error_handling): resolve markdownlint warnings
Diffstat (limited to 'exercises/error_handling/README.md')
-rw-r--r--exercises/error_handling/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/exercises/error_handling/README.md b/exercises/error_handling/README.md
index 5255ace..3b21f2b 100644
--- a/exercises/error_handling/README.md
+++ b/exercises/error_handling/README.md
@@ -1,5 +1,6 @@
# Error handling
-Most errors aren’t serious enough to require the program to stop entirely.
+
+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.