Jiang
6917991764
Merge branch 'KaiserY:main' into main
3 years ago
KaiserY
71be31a654
Merge pull request #604 from LyonNee/main
...
这里应保持 vector原意, 翻译成向量会让人有误解
3 years ago
lyon.nee
5f9c5d84df
这里应保持 vector原意, 翻译成向量会让人有误解
3 years ago
Jiang
1769a1ba3c
Create package.json
3 years ago
KaiserY
d794137e59
Merge pull request #603 from h888866j/patch-2
...
Update ch19-06-macros.md
3 years ago
h888866j
a551d9579e
Update ch19-06-macros.md
...
Changing the remaining “单边模式” to “分支模式”
3 years ago
KaiserY
112f901812
Merge pull request #602 from h888866j/patch-1
...
Fixing translation errors in ch19-06-macros.md
3 years ago
h888866j
ba9539f7ed
Fixing translation errors in ch19-06-macros.md
...
Fixing multiple translation errors in ch19-06-macros.md and adjusting translations in this chapter to make it more appropriate and readble.
3 years ago
KaiserY
2a7d8b10e9
Merge pull request #601 from 117503445/patch-1
...
fix duplicate title in guessing-game-tutorial
3 years ago
117503445
01776dd7a3
fix duplicate title in guessing-game-tutorial
...
ch02-00-guessing-game-tutorial.md has two `接收用户输入` title
3 years ago
KaiserY
b7dcb02068
Merge pull request #600 from liuliuliuzy/main
...
删除ch18-02-refuability中多余词语
3 years ago
liuziyang
acb2a34fbd
删除ch18-02-refuability中多余词语
3 years ago
KaiserY
13f56b0c37
Merge pull request #599 from juicyenc/main
...
更改一些翻译及措辞
3 years ago
juicyenc
e5b44404d0
根据英文repo修饰语言,使其更贴合原意
3 years ago
juicyenc
bfd058ef20
更改race conditon的翻译
3 years ago
juicyenc
3c4a7a5ee5
更改channel的翻译
3 years ago
KaiserY
123a06eecb
Merge pull request #598 from yunyuyuan/patch-1
...
fix: typo ch10-02-traits.md
3 years ago
云与原
379ea2de6f
Update ch10-02-traits.md
3 years ago
KaiserY
97eb82194e
Merge pull request #597 from raygift/main
...
update to ch10-02
3 years ago
raygift
34ee9f11d3
update to ch10-02
...
修正声明trait 为pub 的描述
3 years ago
KaiserY
d1fb2a3b04
Merge pull request #595 from pphui8/object-safety
...
17-2 add object safety
3 years ago
金晖
d4351aac10
17-2 add object safety
...
我注意到17-2章最后有一小节没有翻译,就先翻译上了。
我不太清楚把新加的实例代码放在哪里,就直接放在文档中了。
I`m not sure where to push the new demonstrate code so I just put them in origin file
3 years ago
KaiserY
8e1b703009
Merge pull request #594 from nb5p/patch-1
...
fix typo
3 years ago
nb5p
6cf2b8539e
fix typo
3 years ago
KaiserY
780ef752e6
Merge pull request #593 from qwinsi/patch-1
...
ch07-02措辞:“比喻” --> “类比”
3 years ago
qwinsi
30e084d110
ch07-02修改措辞:“比喻” --> “类比”
...
[7.2 定义模块来控制作用域与私有性] 小节中最后一段中的这句话:
> 原文:The module tree might remind you of the filesystem’s directory tree on your computer; this is a very apt comparison!
> 翻译:这个模块树可能会令你想起电脑上文件系统的目录树;这是一个非常恰当的比喻!
“比喻”一词改为“类比”是不是更准确一些?
3 years ago
KaiserY
b9a9911c2e
update ch11-01 close #592
3 years ago
KaiserY
c4a93b80c1
update ch09-02 close #590
3 years ago
KaiserY
9a10283aa7
Merge pull request #589 from nestfiy/main
...
Update ch05-01-defining-structs.md
3 years ago
tomoat
c91ee75d96
Update ch05-01-defining-structs.md
3 years ago
KaiserY
cebd875ce9
Merge pull request #588 from XMLHexagram/patch-1
...
fix(typo): `custom data types` => `自定义数据类型`
3 years ago
XMLHexagram
aa48c293b1
fix(typo): `custom data types` => `自定义数据类型`
3 years ago
KaiserY
aad2b24386
Update README.md
3 years ago
KaiserY
dfd8f282f5
fix actions
3 years ago
KaiserY
a855fe123a
fix actions
3 years ago
KaiserY
28032c6607
fix actions
3 years ago
KaiserY
d4528e071a
fix actions
3 years ago
KaiserY
c385a728f6
fix actions
3 years ago
KaiserY
3d7be519d9
Update main.yml
3 years ago
KaiserY
5f0442a630
wip add pdf output
3 years ago
KaiserY
7cd5bf3a41
Merge pull request #587 from Live4dreamCH/patch-1
...
PR:修改7.4中pub use部分的表述
3 years ago
Live4dreamCH
bf15d06e34
PR:修改7.4中pub use部分的表述
...
您好!我是rust的初学者,在阅读pub use部分时没有太理解,于是去读了这部分的英文原文,并尝试着修改,使这段更简单易懂。
这是我第一次PR,如有不妥请您多多谅解!
以下是我的验证代码,可以通过编译。
```rust
// 我们所导入的mod
mod front_of_house {
pub mod hosting {
pub fn add_to_waitlist() {}
}
}
// 我们的mod
mod curr {
pub use crate::front_of_house::hosting; // 重导出
pub fn eat_at_restaurant() {
hosting::add_to_waitlist();
}
}
// 导入我们代码的mod
mod others {
use crate::curr;
pub fn others_fn() {
curr::hosting::add_to_waitlist(); // 使用重导出
curr::eat_at_restaurant();
}
}
fn main() {
others::others_fn();
println!("Hello, world!");
}
```
3 years ago
KaiserY
6983d4e013
fix minted
3 years ago
KaiserY
37a0a252eb
Merge pull request #586 from AtomAlpaca/main
...
fix ch02-00
3 years ago
AtomAlpaca
f2002a0445
fix ch02-00
3 years ago
KaiserY
91c7d02376
update to appendix-07
3 years ago
KaiserY
61292d1711
update to ch19-06
3 years ago
KaiserY
d7b0fa8065
update to ch18-03
3 years ago
KaiserY
5b156454d8
update to ch17-03
3 years ago
KaiserY
6493652a3b
update to ch16-04
3 years ago