Skip to content

Fix typos in ErrorHandlingRationale.rst #249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 6, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/ErrorHandlingRationale.rst
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ they produce, and so many errors just end up falling into broad
buckets. Different libraries end up with their own library-specific
general error classes, and exceptions list end up just restating the
library's own dependencies or wrapping the underlying errors in ways
that loses criticial information.
that loses critical information.


Tradeoffs of typed propagation
Expand Down Expand Up @@ -768,7 +768,7 @@ not free:
which on our platforms means a function call because we're not
willing to commit to anything more specific in the ABI.

* Jumping across arbitary frames invalidates the callee-save
* Jumping across arbitrary frames invalidates the callee-save
registers, so the registering frame must save them all eagerly. In
calling conventions with many callee-save registers, this can be
very expensive. However, this is only necessary when it's possible
Expand Down