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.
2 parents 07dfaa0 + 67333ae commit 440c233Copy full SHA for 440c233
src/hello/print/print_display/testcase_list.md
@@ -23,14 +23,6 @@ Using `?` on `write!` looks like this:
23
write!(f, "{}", value)?;
24
```
25
26
-Alternatively, you can also use the `try!` macro, which works the same way.
27
-This is a bit more verbose and no longer recommended, but you may still see it in
28
-older Rust code. Using `try!` looks like this:
29
-
30
-```rust,ignore
31
-try!(write!(f, "{}", value));
32
-```
33
34
<!--
35
With `?` available, implementing `fmt::Display` for a `Vec` is
36
straightforward:
0 commit comments