Skip to content

Commit 0781153

Browse files
authored
Merge pull request #123 from aelred/patch-1
Fix typo mutliple -> multiple
2 parents 850ea15 + 0b94630 commit 0781153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fn read_username_from_file() -> Result<String, io::Error> {
3030

3131
> Note: this code could be made simpler with a single call to
3232
> [`std::fs::read_to_string`](https://doc.rust-lang.org/stable/std/fs/fn.read_to_string.html),
33-
> but we're writing it all out manually here to have an example with mutliple
33+
> but we're writing it all out manually here to have an example with multiple
3434
> errors.
3535
3636
This code has two paths that can fail, opening the file and reading the data

0 commit comments

Comments
 (0)