aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphaller <hallerp@gmail.com>2012-11-12 16:13:37 +0100
committerphaller <hallerp@gmail.com>2012-11-12 16:13:37 +0100
commitf451904320d02c7dbe6b298f6ff790ca5cf5f080 (patch)
treead80226b19d136cb1459f754c6a6592f8ebf6ef8
parent4b954b88c0b5671a3cb555fe5c27c05be3280cef (diff)
downloadscala-async-f451904320d02c7dbe6b298f6ff790ca5cf5f080.tar.gz
scala-async-f451904320d02c7dbe6b298f6ff790ca5cf5f080.tar.bz2
scala-async-f451904320d02c7dbe6b298f6ff790ca5cf5f080.zip
Fix typos
-rw-r--r--src/main/scala/scala/async/FutureSystem.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/scala/async/FutureSystem.scala b/src/main/scala/scala/async/FutureSystem.scala
index 4e471f8..ed967cb 100644
--- a/src/main/scala/scala/async/FutureSystem.scala
+++ b/src/main/scala/scala/async/FutureSystem.scala
@@ -39,7 +39,7 @@ trait FutureSystem {
/** Extract a future from the given promise. */
def promiseToFuture[A: WeakTypeTag](prom: Expr[Prom[A]]): Expr[Fut[A]]
- /** Construct a future to asynchrously compute the given expression */
+ /** Construct a future to asynchronously compute the given expression */
def future[A: WeakTypeTag](a: Expr[A])(execContext: Expr[ExecContext]): Expr[Fut[A]]
/** Register an call back to run on completion of the given future */
@@ -96,7 +96,7 @@ object ScalaConcurrentFutureSystem extends FutureSystem {
}
/**
- * A trivial implentation of [[scala.async.FutureSystem]] that performs computations
+ * A trivial implementation of [[scala.async.FutureSystem]] that performs computations
* on the current thread. Useful for testing.
*/
object IdentityFutureSystem extends FutureSystem {