Skip to content

Commit c8c499c

Browse files
authored
Add a backquote
1 parent 7daca3f commit c8c499c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala-book/futures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ While this was a short introduction, hopefully those examples give you an idea o
338338
- A benefit of futures over threads is that they come with a variety of callback methods that simplify the process of working with concurrent threads,
339339
including the handling of exceptions and thread management
340340
- Handle the result of a future with methods like `onComplete`, or combinator methods like `map`, `flatMap`, `filter`, `andThen`, etc.
341-
- The value in a `Future` is always an instance of one of the `Try` types: `Success` or `Failure
341+
- The value in a `Future` is always an instance of one of the `Try` types: `Success` or `Failure`
342342
- If you’re using multiple futures to yield a single result, you’ll often want to combine them in a for-expression
343343

344344

0 commit comments

Comments
 (0)