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 612aaa8 commit 67333aeCopy full SHA for 67333ae
src/hello/print/print_display/testcase_list.md
@@ -23,19 +23,6 @@ Using `?` on `write!` looks like this:
23
write!(f, "{}", value)?;
24
```
25
26
-<!--
27
-Alternatively, you can also use the `try!` macro, which works the same way.
28
-This is a bit more verbose and no longer recommended, but you may still see it in
29
-older Rust code. Using `try!` looks like this:
30
--->
31
-代わりに、同じよう働く`try!`マクロを使うこともできます。
32
-この書き方はやや冗長でもはや推奨されていませんが、古いRustのコードで出会うかもしれません。
33
-`try!`を使うとこのようになります:
34
-
35
-```rust,ignore
36
-try!(write!(f, "{}", value));
37
-```
38
39
<!--
40
With `?` available, implementing `fmt::Display` for a `Vec` is
41
straightforward:
0 commit comments