summaryrefslogtreecommitdiff
path: root/reviews
diff options
context:
space:
mode:
Diffstat (limited to 'reviews')
-rw-r--r--reviews/blog-roll.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/reviews/blog-roll.md b/reviews/blog-roll.md
index 92981c2..08ffaf9 100644
--- a/reviews/blog-roll.md
+++ b/reviews/blog-roll.md
@@ -194,11 +194,11 @@ then goes over unsatisfactory models:
- **Error codes** clutter a function's signature with an extra return
value, and the resulting branches degrade performance; they do not
- automatically interrupt execution, thus when bugs finally show up,
- it can be hard to track their origin down.
- - Though they did provide their developers with an escape hatch
- that lets them ignore return values, their `ignore` keyword is
- at least auditable.
+ interrupt execution unless checked manually, thus when bugs finally
+ show up, it can be hard to track their origin down.
+ - Though the Midori team did provide their developers with an
+ escape hatch that lets them ignore return values, their `ignore`
+ keyword is at least auditable.
- **Unchecked exceptions** make it hard to reason about a program's
flow. They persist because in the grand scheme of things, they stay