Skip to content
Snippets Groups Projects
Commit a0d91693 authored by Ismail Suleman's avatar Ismail Suleman Committed by Ben Gamari
Browse files

Fix minor typo

parent 20880b56
No related branches found
No related tags found
No related merge requests found
...@@ -376,7 +376,7 @@ handled differently. Instead, you would probably want something like: ...@@ -376,7 +376,7 @@ handled differently. Instead, you would probably want something like:
> e <- tryJust (guard . isDoesNotExistError) (readFile f) > e <- tryJust (guard . isDoesNotExistError) (readFile f)
> let str = either (const "") id e > let str = either (const "") id e
There are occassions when you really do need to catch any sort of There are occasions when you really do need to catch any sort of
exception. However, in most cases this is just so you can do some exception. However, in most cases this is just so you can do some
cleaning up; you aren't actually interested in the exception itself. cleaning up; you aren't actually interested in the exception itself.
For example, if you open a file then you want to close it again, For example, if you open a file then you want to close it again,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment