summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2014-07-25 18:03:17 +0200
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2014-07-25 18:03:17 +0200
commit42899b1850fd56c5e4d75d9d4c3f7509abf54d6d (patch)
treee9f87531cc6f21396dc9784e7d78f82ea63214a7
parent0b685f655f35105cbffa4de45a081f1a2993b750 (diff)
parentec4abf5483e890976ae460252e80a66a95674e61 (diff)
downloadscala-42899b1850fd56c5e4d75d9d4c3f7509abf54d6d.tar.gz
scala-42899b1850fd56c5e4d75d9d4c3f7509abf54d6d.tar.bz2
scala-42899b1850fd56c5e4d75d9d4c3f7509abf54d6d.zip
Merge pull request #3880 from dgruntz/patch-1
Fixes first sentence delimiters
-rw-r--r--src/library/scala/concurrent/Future.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/concurrent/Future.scala b/src/library/scala/concurrent/Future.scala
index 4ed0687334..e93a3284dc 100644
--- a/src/library/scala/concurrent/Future.scala
+++ b/src/library/scala/concurrent/Future.scala
@@ -102,7 +102,7 @@ trait Future[+T] extends Awaitable[T] {
/* Callbacks */
- /** When this future is completed successfully (i.e. with a value),
+ /** When this future is completed successfully (i.e., with a value),
* apply the provided partial function to the value if the partial function
* is defined at that value.
*
@@ -118,7 +118,7 @@ trait Future[+T] extends Awaitable[T] {
case _ =>
}
- /** When this future is completed with a failure (i.e. with a throwable),
+ /** When this future is completed with a failure (i.e., with a throwable),
* apply the provided callback to the throwable.
*
* $caughtThrowables