Skip to content

Commit 67333ae

Browse files
committed
Delete lines that doesn't exist in the original
1 parent 612aaa8 commit 67333ae

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/hello/print/print_display/testcase_list.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,6 @@ Using `?` on `write!` looks like this:
2323
write!(f, "{}", value)?;
2424
```
2525

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-
3926
<!--
4027
With `?` available, implementing `fmt::Display` for a `Vec` is
4128
straightforward:

0 commit comments

Comments
 (0)