Skip to content

Commit 3fa442b

Browse files
committed
Translate untranslated lines in split.md
1 parent 80d19fa commit 3fa442b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/mod/split.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ $ tree .
1919
└── split.rs
2020
```
2121

22+
<!--
2223
In `split.rs`:
24+
-->
25+
`split.rs`は以下のようになります:
2326

2427
```rust,ignore
2528
// This declaration will look for a file named `my.rs` and will
@@ -44,7 +47,10 @@ fn main() {
4447
4548
```
4649

50+
<!--
4751
In `my.rs`:
52+
-->
53+
`my.rs`は以下のようになります:
4854

4955
```rust,ignore
5056
// Similarly `mod inaccessible` and `mod nested` will locate the `nested.rs`
@@ -70,7 +76,10 @@ pub fn indirect_access() {
7076
}
7177
```
7278

79+
<!--
7380
In `my/nested.rs`:
81+
-->
82+
`my/nested.rs`は以下のようになります:
7483

7584
```rust,ignore
7685
pub fn function() {
@@ -83,7 +92,10 @@ fn private_function() {
8392
}
8493
```
8594

95+
<!--
8696
In `my/inaccessible.rs`:
97+
-->
98+
`my/inaccessible.rs`は以下のようになります:
8799

88100
```rust,ignore
89101
#[allow(dead_code)]

0 commit comments

Comments
 (0)