We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea86d74 commit 738248cCopy full SHA for 738248c
source/docs/e5.error_and_none_propagation.md
@@ -81,7 +81,7 @@ fn function_with_error() -> Result<u64, String> {
81
82
```rust
83
// using `?`
84
-let x = function_with_error()?; // if Err, returns immidiately; if Ok(255), set x to 255
+let x = function_with_error()?; // if Err, returns immediately; if Ok(255), set x to 255
85
86
// using `try!()`
87
let x = try!(function_with_error());
0 commit comments