Skip to content

Commit 21f73fd

Browse files
authored
Merge pull request #113 from aleksator/patch-1
Fix a typo: lifed -> lifted
2 parents daacb98 + e7db6c1 commit 21f73fd

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,4 @@ You can use `?` with `Result<T, E>`s, but also with `Option<T>`. In that
117117
case, `?` will return a value for `Some(T)` and return `None` for `None`. One
118118
current restriction is that you cannot use `?` for both in the same function,
119119
as the return type needs to match the type you use `?` on. In the future,
120-
this restriction will be lifed.
120+
this restriction will be lifted.

0 commit comments

Comments
 (0)