Skip to content

Commit 450e356

Browse files
committed
Give appropriate tags to code snippet
Fix #17
1 parent 1df21fd commit 450e356

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/participate/before-contest/generate-project.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Done! New project created /path/to/project/abc000
3333

3434
まずは空のプロジェクトを作成します。
3535

36-
```
36+
```console
3737
$ cargo init abc000
3838
Created binary (application) package
3939
```

Diff for: src/participate/during-contest/write-tests.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Rust には組み込みでテストをするための機構が備わっていま
88
99
なんとなく見れば分かるように、 `output_with_stdin()` の引数にサンプル入力を渡し `assert_eq!(output.stdout_str(), <expected output>);` で期待する出力と一致するかどうかを確かめます。一致しない場合、テストは失敗します。
1010

11-
```rust
11+
```rust,ignore
1212
use cli_test_dir::*;
1313
1414
const BIN: &'static str = "./main";

0 commit comments

Comments
 (0)