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 e3ed212 commit 893474eCopy full SHA for 893474e
src/libcore/result.rs
@@ -153,12 +153,12 @@
153
//! }
154
//! ```
155
//!
156
-//! # The `?` syntax
+//! # The question mark operator, `?`
157
158
//! When writing code that calls many functions that return the
159
-//! [`Result`] type, the error handling can be tedious. The [`?`]
160
-//! syntax hides some of the boilerplate of propagating errors up the
161
-//! call stack.
+//! [`Result`] type, the error handling can be tedious. The question mark
+//! operator, [`?`], hides some of the boilerplate of propagating errors
+//! up the call stack.
162
163
//! It replaces this:
164
0 commit comments