Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

translate some untranslated parts #73

Merged
merged 1 commit into from Sep 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/hello/print.md
Expand Up @@ -17,10 +17,10 @@ some of which include:
* `eprintln!`: same as `eprint!`but a newline is appended.
-->
* `format!`: フォーマットされたテキストを文字列(String)型に書き込みます。
* `print!`: `format!` と同様ですが、コンソールにそのテキストを出力します
* `print!`: `format!` と同様ですが、コンソール (io::stdout) にそのテキストを出力します
* `println!`: `print!`: と同じですが改行が付け加えられます。
* `eprint!`: same as `format!` but the text is printed to the standard error (io::stderr).
* `eprintln!`: same as `eprint!`but a newline is appended.
* `eprint!`: `format!` と同様ですが、標準エラー出力 (io::stderr) にそのテキストを出力します。
* `eprintln!`: `eprint!`と同じですが改行が付け加えられます。

<!--
All parse text in the same fashion. As a plus, Rust checks formatting
Expand Down