We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
?
try!
1 parent 53106df commit 19724d3Copy full SHA for 19724d3
src/libstd/io/mod.rs
@@ -205,7 +205,8 @@
205
//!
206
//! Last, but certainly not least, is [`io::Result`]. This type is used
207
//! as the return type of many `std::io` functions that can cause an error, and
208
-//! can be returned from your own functions as well.
+//! can be returned from your own functions as well. Many of the examples in this
209
+//! module use the [`?` operator]:
210
211
//! ```
212
//! use std::io;
@@ -249,6 +250,7 @@
249
250
//! [`println!`]: ../macro.println.html
251
//! [`Lines`]: struct.Lines.html
252
//! [`io::Result`]: type.Result.html
253
+//! [`?` operator]: ../../book/syntax-index.html
254
//! [`read()`]: trait.Read.html#tymethod.read
255
256
#![stable(feature = "rust1", since = "1.0.0")]
0 commit comments