Skip to content

Commit 49dc357

Browse files
committed
doc: minor format fixes in book/error-handling
1 parent f963eb2 commit 49dc357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/book/error-handling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ analysis is the only way to get at the value stored inside an `Option<T>`. This
182182
means that you, as the programmer, must handle the case when an `Option<T>` is
183183
`None` instead of `Some(t)`.
184184

185-
But wait, what about `unwrap`,which we used [`previously`](#code-unwrap-double)?
185+
But wait, what about `unwrap`, which we used [previously](#code-unwrap-double)?
186186
There was no case analysis there! Instead, the case analysis was put inside the
187187
`unwrap` method for you. You could define it yourself if you want:
188188

0 commit comments

Comments
 (0)