Skip to content

SIP-14: Fix two typos #103

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
Jul 18, 2012
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 sips/pending/_posts/2012-01-21-futures-promises.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ of type `Left[Throwable]` otherwise. The `onComplete` method is
parametric in the return type of the callback, but it discards the
result of the callback.

Coming back to our social network example, lets assume we want to
Coming back to our social network example, let's assume we want to
fetch a list of our own recent posts and render them to the screen.
We do so by calling the method `getRecentPosts` which returns a `List[String]`:

Expand Down Expand Up @@ -184,7 +184,7 @@ However, a particular `Future` implementation may have a well-defined
order.

5. In the event that some of the callbacks throw an exception, the
other callbacks are executed irregardlessly.
other callbacks are executed regardlessly.

6. In the event that some of the callbacks never complete (e.g. the
callback contains an infinite loop), the other callbacks may not be
Expand Down