Skip to content

Commit a34a8a3

Browse files
committed
address PR comments
1 parent 6c22f79 commit a34a8a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

overviews/core/_posts/2012-09-20-futures.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ languages: [ja]
1111

1212
## Introduction
1313

14-
Futures provide a nice way to reason about performing many operations
15-
in parallel-- in an efficient and non-blocking way. The idea
16-
is simple, a [Future](http://www.scala-lang.org/api/current/index.html#scala.concurrent.Future)
14+
Futures provide a way to reason about performing many operations
15+
in parallel-- in an efficient and non-blocking way.
16+
A [Future](http://www.scala-lang.org/api/current/index.html#scala.concurrent.Future)
1717
is a sort of a placeholder object that you can create for a result that does not yet exist.
1818
Generally, the result of the `Future` is computed concurrently and can be later collected.
1919
Composing concurrent tasks in this way tends to result in faster, asynchronous, non-blocking parallel code.

0 commit comments

Comments
 (0)