We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 53b14f4 + af68928 commit 8a8918cCopy full SHA for 8a8918c
src/error/option_unwrap/question_mark.md
@@ -5,7 +5,7 @@ use the `?` operator. If `x` is an `Option`, then evaluating `x?` will return
5
the underlying value if `x` is `Some`, otherwise it will terminate whatever
6
function is being executed and return `None`.
7
8
-```rust,editable
+```rust,ignore
9
fn next_birthday(current_age: Option<u8>) -> Option<String> {
10
// If `current_age` is `None`, this returns `None`.
11
// If `current_age` is `Some`, the inner `u8` value + 1
0 commit comments