From b538ba8fa5367366e122edfb8bf344092b227cf1 Mon Sep 17 00:00:00 2001 From: Philipp Haller Date: Wed, 18 Jul 2012 03:45:10 +0300 Subject: [PATCH] Fix two typos --- sips/pending/_posts/2012-01-21-futures-promises.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sips/pending/_posts/2012-01-21-futures-promises.md b/sips/pending/_posts/2012-01-21-futures-promises.md index 5973b09d2a..414018fdd8 100644 --- a/sips/pending/_posts/2012-01-21-futures-promises.md +++ b/sips/pending/_posts/2012-01-21-futures-promises.md @@ -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]`: @@ -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