Skip to content

Commit 612aaa8

Browse files
committed
Translate untranslated lines in testcase_list.md
1 parent 50c8d5d commit 612aaa8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/hello/print/print_display/testcase_list.md

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

26+
<!--
2627
Alternatively, you can also use the `try!` macro, which works the same way.
2728
This is a bit more verbose and no longer recommended, but you may still see it in
2829
older Rust code. Using `try!` looks like this:
30+
-->
31+
代わりに、同じよう働く`try!`マクロを使うこともできます。
32+
この書き方はやや冗長でもはや推奨されていませんが、古いRustのコードで出会うかもしれません。
33+
`try!`を使うとこのようになります:
2934

3035
```rust,ignore
3136
try!(write!(f, "{}", value));

0 commit comments

Comments
 (0)