lyon.nee
5f9c5d84df
这里应保持 vector原意, 翻译成向量会让人有误解
3 years ago
h888866j
a551d9579e
Update ch19-06-macros.md
...
Changing the remaining “单边模式” to “分支模式”
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
117503445
01776dd7a3
fix duplicate title in guessing-game-tutorial
...
ch02-00-guessing-game-tutorial.md has two `接收用户输入` title
3 years ago
liuziyang
acb2a34fbd
删除ch18-02-refuability中多余词语
3 years ago
juicyenc
e5b44404d0
根据英文repo修饰语言,使其更贴合原意
3 years ago
juicyenc
bfd058ef20
更改race conditon的翻译
3 years ago
juicyenc
3c4a7a5ee5
更改channel的翻译
3 years ago
云与原
379ea2de6f
Update ch10-02-traits.md
3 years ago
raygift
34ee9f11d3
update to ch10-02
...
修正声明trait 为pub 的描述
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
nb5p
6cf2b8539e
fix typo
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
tomoat
c91ee75d96
Update ch05-01-defining-structs.md
3 years ago
XMLHexagram
aa48c293b1
fix(typo): `custom data types` => `自定义数据类型`
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
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
KaiserY
946f5d5fc0
update to ch15-06
3 years ago
KaiserY
be4f7e7281
update to ch14-05
3 years ago
KaiserY
0635f02553
update to ch13-04
3 years ago
KaiserY
324244de9b
update to ch12-06
3 years ago
KaiserY
7e44e87a77
update to ch11-03
3 years ago
KaiserY
eaec47a9ed
update to ch10-03
3 years ago
KaiserY
95a46e3bb8
update to ch09-03
3 years ago
manbucy
131256699c
Update appendix-02-operators.md
...
`%` 取模--> 取余
3 years ago
KaiserY
f625094908
update to ch08-03
3 years ago
KaiserY
4b0a9c80b2
update to ch07-05
3 years ago
KaiserY
f1b94ab927
update to ch06-03
3 years ago
KaiserY
7f827e9fab
update to ch05-03
3 years ago
KaiserY
b1a0ca6e85
update to ch04-02
3 years ago
KaiserY
23278a0c39
update to ch03-05
3 years ago
KaiserY
951f1df20b
Merge branch 'master' into main
3 years ago
KaiserY
956996e0e8
add listings code && update to ch02-00
3 years ago
tanliwei
4343fff9c8
fix a typo
...
fix a typo
3 years ago
Liming Jin
54b2342e85
update appendix-04: replace rls to rust-analyzer
3 years ago
KaiserY
a62de9ef02
Merge pull request #579 from mnixry/patch-1
...
Fix some untranslated `Filename:`
3 years ago
Mix
95c930ba95
fix some untranslated `Filename:`
3 years ago
Liming Jin
4024a81432
update ch05-03
3 years ago
KaiserY
397642d565
Merge pull request #577 from jinliming2/update-ch05-02
...
update ch05-02
3 years ago
Liming Jin
871911b4a2
update ch05-02
3 years ago
Sefank
3188f7a784
Update title-page.md to V2021-12-24
...
Signed-off-by: Sefank <12670778+Sefank@users.noreply.github.com>
3 years ago
Yunli Liu
429cfa4222
fix: runtime penalty 运行时损耗
...
The number of times that Deref::deref needs to be inserted is resolved at compile time, so there is no runtime penalty for taking advantage of deref coercion!
这些解析都发生在编译时,所以利用 Deref 强制转换并没有运行时损耗!
3 years ago
makisevon
317b7ab3be
fix: tiny mistakes
3 years ago
kyle
f5045a2147
fixed typo
...
fixed typo
3 years ago
KaiserY
fc425b84f0
update ch05-01 fix typo
3 years ago
KaiserY
f8d9ba1dc2
update ch05-02 close #571
3 years ago
KaiserY
38585e1621
update ch05-01 close #570
3 years ago
Vanilla
6d4849235b
[F] ch05-03-method-syntax.md: Typo "他" -> "它".
3 years ago
MacTavish Lee
63d11a44c6
Update ch03-01-variables-and-mutability.md
...
翻译较为生硬,用`但`阅读起来并不通顺,这里的意思是改变类型还能继续用这个变量名,用`并且`更为合适。
3 years ago
Rawlence
d6bb9b4c5e
update ch-03-03-how-functions-work
3 years ago
Rawlence
f55b036d47
update ch03-02-data-type
3 years ago
Rawlence
7a7630e086
update ch03-01-variables-and-mutability
3 years ago
Rawlence
f22d7d9d96
update to the latest document(2021-12-05)
3 years ago
KaiserY
9b9406500f
Merge pull request #564 from sihuan/main
...
update ch06-02-match.md
3 years ago
SiHuan
f421a2a4ed
update ch06-02-match.md
3 years ago
boholder
7352dade75
Optimize confusing descriptions in ch17-03-oo-design-patterns.md
3 years ago
ardxwe
fc984cccf4
update comments
3 years ago
AiHao
dbd823ccd2
chore: fix the redundant field interpretation
3 years ago
A1lo
7aa71fe6d8
fix: response with correct HTTP/1.x Message format
...
The correct `HTTP/1.x Message`'s headers are followed after the `start-line` which describing the requests to be implemented. After the `headers` is a `blank line` indicating all `meta-information` for the request has been sent. Then the `optional body` is followed.
Increase HTTP buffer size to 1024(keep the same with the buffer size in `ch20-01-single-threaded.md`).
3 years ago
A1lo
515246b920
fix: response with correct HTTP/1.x Message format
...
The correct `HTTP/1.x Message`'s headers are followed after the `start-line` which describing the requests to be implemented. After the `headers` is a `blank line` indicating all `meta-information` for the request has been sent. Then the `optional body` is followed.
3 years ago
kalasutra
9b39aa307b
修复示例代码中的语法错误
3 years ago
renxinxie
97dee7c164
fix some typo
3 years ago
liuyanjie
7465d603ba
Update ch05-01-defining-structs.md
...
修复5.1章节拼写错误 : `...user1` -> `..user1`
3 years ago
Bryan Lee
955bb7cdd3
docs: update the Chapter 5 and improve some of the wording
3 years ago
Bryan Lee
56632d1942
docs: update the Chapter 4 and improve some of the wording
3 years ago
KaiserY
834e1c28cf
update ch15-06 close #546
3 years ago
Annlix
8747efb5db
Fixed a sytax error in ch03-05
...
At line 286, the correct sytax of `break` is `break 'counting_up;`, not `break'counting_up;`.
3 years ago
Annlix
828f7fa416
Fixed an error in ch03-05-control-flow
...
At line 286, the loop label is `counting_up`, not `counting_ up`
3 years ago
Annlix
0b56c7e876
Fixed an error in ch03-01
...
Fixed an error in ch03-01
3 years ago
Sprite
a67a9daa6b
Fix listing ids
3 years ago
Sprite
a317ca4f5f
Improve translation grammar in the chapter 19-4
3 years ago
Sprite
dfb5d8fa25
Remove a duplicate word
3 years ago
Sprite
c7d036e02f
Fix a typo
3 years ago
Nicholas Zhan
6d9a9968b1
纠正 ISSUE#547 描述的翻译错误
3 years ago
sai0556
de9b29ad1c
示例代码缺失
...
示例20-9,20-7缺少Content-Length
3 years ago
KaiserY
b7aeabd042
Merge pull request #544 from Orefa/master
...
修改过程宏的翻译
3 years ago
KaiserY
64ebac2d4e
Merge pull request #543 from showerMuggle/patch-1
...
删除重复段落
3 years ago
KaiserY
8cd62b28cb
Merge pull request #542 from LiuYinCarl/main
...
修复部分19章错误及语法问题
3 years ago
Orefa
c07e78acdc
更改过程宏的翻译
3 years ago
shower
2fcbb5b865
删除重复段落
3 years ago
LiuYinCarl
6e87e7ee60
修复部分19章错误及语法问题
3 years ago
Orefa
cdc4aff79b
Merge branch 'KaiserY:main' into master
3 years ago
Orefa
f1daab41ba
fix anchor
3 years ago
LiuYinCarl
acc9b9b586
Merge remote-tracking branch 'upstream/main' into main
3 years ago
LiuYinCarl
2939ddb01b
修复18章部分错误及调整部分翻译
3 years ago
KaiserY
8c0eb32d86
Merge pull request #539 from LiuYinCarl/main
...
修复目录与标题不一致
3 years ago
LiuYinCarl
d141d7935a
修复目录与标题不一致
3 years ago
Orefa
796a574366
fix anchor
3 years ago
LiuYinCarl
ba961370a7
对照英文原文,修改计算 enum 占用内存大小的说明
3 years ago
skiy
981e46b7f5
docs: update ch10-00-generics.md
3 years ago
Brayn Lee
7e368ea706
docs: update the Chapter 3 and improve some of the wording
3 years ago
Orefa
b2c7139c78
Update ch18-03-pattern-syntax.md
...
fix anchor
3 years ago
Sprite
eb04a192d1
Correct a translation error
3 years ago
Sprite
cc21e28e95
Improve translation grammar
3 years ago
KaiserY
649b16f0c2
Merge pull request #528 from SpriteOvO/patch-2
...
Improve translation grammar
3 years ago
KaiserY
f99e58e90a
Merge pull request #529 from SpriteOvO/patch-3
...
Improve translation grammar
3 years ago
Sprite
114d46a442
Improve translation grammar
3 years ago
Sprite
2b98e71295
Fix a minor formatting mistake
3 years ago
Sprite
16674d1686
Improve translation grammar
3 years ago
Sprite
d2c853aa0e
Fix typo and improve grammar
3 years ago
Brayn Lee
38c23ae5d8
docs: update ch02-00-guessing-game-tutorial.md
3 years ago
Brayn Lee
8f72942aff
docs: remove unsafe Ferris designations from code
3 years ago
Brayn Lee
2c79387d0b
docs: update ch00 and ch01 sections
3 years ago
杨坚强
c423db8364
更正翻译错误
3 years ago
xBLACKICEx
98c8e34b48
Update ch03-05-control-flow.md
...
改一下拼写错误
3 years ago
xBLACKICEx
91eef35b44
更改翻译语语句是的更通顺
3 years ago
KaiserY
8a87fcf074
update ch02-00 close #521
3 years ago
Enki-y
1af9d4d921
Update foreword.md
3 years ago
KaiserY
3c9643b30b
update ch18-00 close #519
3 years ago
KaiserY
a737fe8fe1
update Deref Coercion, close #508
3 years ago
KaiserY
b6c8485976
update img
3 years ago
Jorge
ea3622dfb0
Fix 2 typos: "它人" -> "他人"
3 years ago
Jorge
2401ab6364
Fix a typo: "改" -> "该"
3 years ago
Jorge
efcc26fab2
Fix rand's version: 0.5.6 -> 0.8.4
3 years ago
王嘉欣
3c18c9371e
fix code error
3 years ago
Jchaokai
611ba5b95a
Update ch02-00-guessing-game-tutorial.md
4 years ago
iamwhcn
cf9ce76876
更新原文链接
4 years ago
Hao Wang
cecb8a1e76
更新原文链接
4 years ago
Hao Wang
dac25e0f76
更新示例 16-11的代码
4 years ago
dirtmelon
b12c748c36
Update ch02-00-guessing-game-tutorial.md
4 years ago
Suven
254cbaa607
Update ch06-02-match.md
...
Delete duplicate content
4 years ago
KaiserY
e4143bd47e
update ch02-00 close #505
4 years ago
guo
dd5556f7cf
Update ch13-02-iterators.md
...
修改错别字
4 years ago
KaiserY
0405079c5d
Merge pull request #502 from zhibinr/patch-2
...
修正链接
4 years ago
KaiserY
5263eee616
Merge pull request #503 from zhibinr/patch-3
...
ch19-06, 改进翻译
4 years ago
zhibinr
54ec8bb473
Update ch19-06-macros.md
4 years ago
zhibinr
42bc09040e
改进翻译
4 years ago
zhibinr
cd771fedb7
改进”In a moment"的翻译
4 years ago
zhibinr
0251fe4543
修正链接
4 years ago
zhibinr
7f7b2bc82e
修正引用的示例编号
4 years ago
Tony Zhou
3474c55909
Update ch11-03-test-organization.md
...
原翻译语义不清
4 years ago
KaiserY
4ded248e2b
update appendix-01 fix #499
4 years ago
guo
963bd09920
Update ch06-01-defining-an-enum.md
4 years ago
KaiserY
fdf1ea90da
update ch19-06 close #497
4 years ago
KaiserY
743ba2472d
update ch19-03 close #496
4 years ago
TheVoid
278ff07f75
fix typo
4 years ago
yuhao1229
e120717ba3
Update ch13-02-iterators.md
...
项的序列 -> 序列的项
4 years ago
Zehua Zou
f6fe40b11b
Update ch20-03-graceful-shutdown-and-cleanup.md
4 years ago
Zehua Zou
5f225daae8
Update ch20-01-single-threaded.md
4 years ago
Zehua Zou
5c29c8d652
Update ch20-01-single-threaded.md
4 years ago
Zehua Zou
e81004a7ab
Update ch20-01-single-threaded.md
4 years ago
Zehua Zou
974330f172
Update ch15-06-reference-cycles.md
4 years ago
Zehua Zou
cbf8fe962a
Update ch12-03-improving-error-handling-and-modularity.md
4 years ago
KaiserY
c3b095ea4d
update ch06-02 close #486
4 years ago
KaiserY
fc7e90621f
update ch07-04 close #488
4 years ago
Oyyko
6204fdc727
Fix typo
4 years ago
Shuyang Wu
3a47d6a953
Update ch07-01-packages-and-crates.md
4 years ago
poly000
caeb0d33f8
Update ch18-03-pattern-syntax.md
4 years ago
KaiserY
6245824ab9
update ch13-01 close #482
4 years ago
Kefu Chai
0ff72eb6c7
ch10-01-syntax: revise translation
...
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
4 years ago
MoXtar-1s
d4a7c03238
Update ch20-03-graceful-shutdown-and-cleanup.md
...
Add a missing statement.
4 years ago
KaiserY
a0652f5baf
update ch01-01 and title-page close #472
4 years ago
Orefa
54cc7c83c5
remove >
4 years ago
Orefa
e80e922fc3
Update ch14-02-publishing-to-crates-io.md
4 years ago
Orefa
639f9123ef
Update ch12-04-testing-the-librarys-functionality.md
4 years ago
Orefa
0f6a09ec28
Update ch12-03-improving-error-handling-and-modularity.md
...
fix variable name
4 years ago
Orefa
ad55920256
Update ch10-03-lifetime-syntax.md
...
fix output message
4 years ago
KaiserY
538bcf748a
Merge pull request #469 from Orefa/patch-1
...
fix link
4 years ago
KaiserY
8a82dcd770
Merge pull request #467 from skiy/master
...
Add The Array Type section
4 years ago
Orefa
b4ae97a90b
fix link
4 years ago
Orefa
c613b67fd5
fix link url
4 years ago
skiy
1fa38d5874
Add The Array Type section
4 years ago
Skiy Chan
f1fc4dd320
Update ch02-00-guessing-game-tutorial.md
4 years ago
KaiserY
4950ddf381
Merge pull request #465 from Discreater/patch-2
...
fix ch14-03-cargo-workspaces.md: `add*` to `*add*`
4 years ago
Discreater
2b34bdeaea
Update ch14-03-cargo-workspaces.md
4 years ago
pan93412
3b4dab10c8
fix(ch13-03): &[String] -> &[String]
4 years ago
Discreater
626c42bf17
Update ch11-03-test-organization.md
4 years ago
TangliziGit
e3327d71c9
fix translation in ch19-01-unsafe-rust.md
...
修复`可变或不可变`顺序错误
Refs: https://github.com/KaiserY/trpl-zh-cn/issues/461
4 years ago
KaiserY
bbd7c41391
update ch14-02 close #460
4 years ago
zyw271828
02845de9e8
Fix typo
4 years ago
Orefa
bdfff5f346
Update ch03-01-variables-and-mutability.md
...
fix link
4 years ago
KaiserY
4cd8d95664
Merge pull request #457 from Nangos/patch-44
...
Update appendix-07-nightly-rust.md
4 years ago
KaiserY
9bb1d5690d
Merge pull request #456 from Nangos/patch-43
...
Update appendix-06-translation.md
4 years ago
KaiserY
ef5daf4916
Merge pull request #455 from Nangos/patch-42
...
Update appendix-05-editions.md
4 years ago
KaiserY
604eaf2e77
Merge pull request #454 from Nangos/patch-41
...
Update appendix-04-useful-development-tools.md
4 years ago
KaiserY
c6ee69b98b
Merge pull request #453 from Nangos/patch-40
...
Update appendix-03-derivable-traits.md
4 years ago
KaiserY
e820168ea0
Merge pull request #452 from Nangos/patch-39
...
Update ch19-06-macros.md
4 years ago
KaiserY
13f9232eab
Merge pull request #451 from Nangos/patch-38
...
Update ch19-05-advanced-functions-and-closures.md
4 years ago
Nango
0858706cf0
Update appendix-07-nightly-rust.md
4 years ago
Nango
f725d8839c
Update appendix-06-translation.md
4 years ago
Nango
7a870c3b4e
Update appendix-05-editions.md
4 years ago
Nango
bfa7e3204b
Update appendix-04-useful-development-tools.md
4 years ago
Nango
90f09d9e28
Update appendix-03-derivable-traits.md
4 years ago
Nango
7c641f104d
Update ch19-06-macros.md
4 years ago
Nango
aafeb8c8d7
Update ch19-05-advanced-functions-and-closures.md
4 years ago
Nango
72595447a1
fix strike
4 years ago
Nango
32b88aea0d
Update ch19-03-advanced-traits.md
4 years ago
KaiserY
4bec93cede
Merge pull request #449 from HareInWeed/patch
...
fix translation in ch19-06-macros.md
4 years ago
HareInWeed
a33f67fb39
fix translation in ch19-06-macros.md
4 years ago
Nango
126b5ab62c
Update ch19-01-unsafe-rust.md
4 years ago
Nango
a911b5a90e
Update ch17-03-oo-design-patterns.md
4 years ago
KaiserY
e4a7dc8033
Merge pull request #445 from Nangos/patch-34
...
Update ch17-01-what-is-oo.md
4 years ago
Nango
582d745275
Update ch17-01-what-is-oo.md
4 years ago
Nango
cf62c619c0
Update ch16-01-threads.md
4 years ago
wtklbm
e100794706
Update ch19-04-advanced-types.md
4 years ago
LiuYang
84b07e3822
Update ch03-02-data-types.md
...
more clear
4 years ago
KaiserY
3beedad29c
update ch07-05 close #441
4 years ago
KaiserY
7dfbeb65df
Merge pull request #439 from Nangos/patch-31
...
Update ch15-00-smart-pointers.md
4 years ago
KaiserY
89b2d52028
Merge pull request #440 from Nangos/patch-32
...
Update ch15-03-drop.md
4 years ago
KaiserY
0c097ef823
Merge pull request #438 from Nangos/patch-30
...
Update ch15-05-interior-mutability.md
4 years ago
KaiserY
94de12f494
Merge pull request #437 from Nangos/patch-29
...
Update ch15-04-rc.md
4 years ago
KaiserY
8db3ff120b
Merge pull request #435 from Nangos/patch-25
...
Update ch13-01-closures.md
4 years ago
Nango
803214946c
Update ch15-03-drop.md
4 years ago
Nango
8c463ba78f
Update ch15-00-smart-pointers.md
4 years ago
Nango
712d64f6ee
Update ch15-05-interior-mutability.md
4 years ago
Nango
31beec42a1
Update ch15-04-rc.md
4 years ago
Nango
7d350b2bb8
Update ch14-02-publishing-to-crates-io.md
4 years ago
Nango
6e76aa7ce5
Update ch13-01-closures.md
4 years ago
KaiserY
f7ab3f6d88
Merge pull request #430 from Nangos/patch-20
...
fix caption format
4 years ago
KaiserY
b29d41ed25
Merge pull request #431 from Nangos/patch-21
...
Update ch12-03-improving-error-handling-and-modularity.md
4 years ago
KaiserY
291f119c58
Merge pull request #432 from Nangos/patch-22
...
Update ch12-04-testing-the-librarys-functionality.md
4 years ago
KaiserY
931fe143d1
Merge pull request #433 from Nangos/patch-23
...
Update ch12-05-working-with-environment-variables.md
4 years ago
KaiserY
20a1251c0b
Merge pull request #434 from Nangos/patch-24
...
Update ch12-06-writing-to-stderr-instead-of-stdout.md
4 years ago
Nango
b8cb9b7d72
Update ch12-06-writing-to-stderr-instead-of-stdout.md
4 years ago
Nango
60fa188a68
Update ch12-05-working-with-environment-variables.md
4 years ago
Nango
7fe70b1128
Update ch12-04-testing-the-librarys-functionality.md
4 years ago
Nango
661325b4e6
Update ch12-03-improving-error-handling-and-modularity.md
4 years ago
Nango
dc943aff7a
Update ch12-03-improving-error-handling-and-modularity.md
4 years ago
Nango
d3932e8f0b
fix caption format
4 years ago
Nango
6202e4efb7
fix topic format
4 years ago
KaiserY
acf3e9ce77
fix mdbook-latex related format
4 years ago
KaiserY
f96f669b06
add vuepress config, close #427
4 years ago
Nango
89ec9e191f
Update ch10-03-lifetime-syntax.md
4 years ago
KaiserY
b5de0af973
Merge pull request #426 from wtklbm/master
...
第二次更新智能指针部分内容
4 years ago
KaiserY
535e932b88
Merge pull request #425 from Nangos/patch-14
...
Update ch09-03-to-panic-or-not-to-panic.md
4 years ago
KaiserY
427c750725
Merge pull request #424 from Nangos/patch-13
...
Update ch09-02-recoverable-errors-with-result.md
4 years ago
KaiserY
ac0c46528f
Merge pull request #423 from Nangos/patch-12
...
Update ch08-00-common-collections.md
4 years ago
KaiserY
c80481b524
Merge pull request #422 from Nangos/patch-11
...
Update ch08-03-hash-maps.md
4 years ago
KaiserY
0189a7ebe8
Merge pull request #421 from Nangos/patch-9
...
Update ch07-05-separating-modules-into-different-files.md
4 years ago
KaiserY
38d7f0ba6e
Merge pull request #420 from Nangos/patch-8
...
Update ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md
4 years ago
wtklbm
f5c03aa58d
将 "泄露" 改为 "泄漏"
4 years ago
wtklbm
395381c2b4
补全 “`Rc`”
4 years ago
wtklbm
c3cccf1ba7
补全 “`Rc`”
4 years ago
wtklbm
53f8710e5e
将 "结点" 改为 "节点"
4 years ago
Nango
08284b5b2a
Update ch09-03-to-panic-or-not-to-panic.md
4 years ago
Nango
b7b5629fd7
Update ch09-03-to-panic-or-not-to-panic.md
4 years ago
Nango
b445b2bc8c
Update ch09-02-recoverable-errors-with-result.md
4 years ago
Nango
e05a07967f
Update ch08-00-common-collections.md
4 years ago
Nango
679c30941b
Update ch08-03-hash-maps.md
4 years ago
Nango
4540c594a5
Update ch07-05-separating-modules-into-different-files.md
4 years ago
Nango
872eed3e98
Update ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md
4 years ago
Nango
48c4215d4f
Update ch06-02-match.md
4 years ago
KaiserY
ccd2c0ae0e
Merge pull request #418 from wtklbm/master
...
更新智能指针部分内容
4 years ago
KaiserY
751be5b9ae
Merge pull request #417 from Nangos/patch-6
...
Update ch04-02-references-and-borrowing.md
4 years ago
KaiserY
321df851d0
Merge pull request #416 from Nangos/patch-5
...
Update ch04-01-what-is-ownership.md
4 years ago
KaiserY
638c2624fc
Merge pull request #415 from Nangos/patch-4
...
Update ch03-02-data-types.md
4 years ago
KaiserY
bd098a711d
Merge pull request #414 from Nangos/patch-3
...
Update ch03-01-variables-and-mutability.md
4 years ago
wtklbm
4d3e694894
将 `Ref` 改为 `Ref<T>`
4 years ago
wtklbm
a33883cb55
将 "内存泄露" 改为 "内存泄漏"
4 years ago
Nango
b8d28167ef
Update ch04-02-references-and-borrowing.md
4 years ago
Nango
cc80184b0f
Update ch04-01-what-is-ownership.md
4 years ago
Nango
17f68a22e6
Update ch03-02-data-types.md
4 years ago
Nango
2301c30668
Update ch03-01-variables-and-mutability.md
4 years ago
Nango
2d8ab0165a
only one fix for ch02-00-guessing-game-tutorial.md
4 years ago
Nango
cbec496d36
fix some translations on ch00-00-introduction.md
4 years ago
wtklbm
c092e503ec
Update ch15-05-interior-mutability.md
...
将 "会在运行时 `panic!`" 改为 "会在运行时出现 panic"
4 years ago
Xie Zhihao
6c0cbafa04
fix: typo
4 years ago
wtklbm
a20aeb4da8
Update ch15-00-smart-pointers.md
...
修改错字
4 years ago
KaiserY
986cef820f
update ch07-02 close #407
5 years ago
chikaku
29a01fa771
Update ch19-01-unsafe-rust.md
5 years ago
KaiserY
e5c752fe32
update ch10-03 close #405
5 years ago
DyeKuu
87a9fbc850
fix: url
5 years ago
Kunhao ZHENG
bcde0615fd
fix: url redirect
5 years ago
Kunhao ZHENG
7b97012a7f
fix: delete faux translation
5 years ago
Kunhao ZHENG
82dad270de
fix: expr
5 years ago
Kunhao ZHENG
53b4bfeb31
fix: typo
5 years ago
Kunhao ZHENG
53e5bf2261
fix: faux index
5 years ago
Kunhao ZHENG
866b46b146
Update ch13-03-improving-our-io-project.md
5 years ago
Kunhao ZHENG
9677eb732a
Update ch13-03-improving-our-io-project.md
5 years ago
Kunhao ZHENG
40c8403b96
fix: typo
...
In the original text: variables like contents are used to perform the program’s logic.
5 years ago
chanble
8c8320af3b
Merge branch 'master' into error_binding
5 years ago
chanble
b54074bf0c
修改了理解不顺的翻译
5 years ago
Xu Qiaolun
17b8968cc6
修复一些翻译问题
5 years ago
Xu Qiaolun
899d61a2f3
修复一些翻译问题
5 years ago
Xu Qiaolun
82bca5d6d5
修改一些描述用语,更符合中文语境
5 years ago
KaiserY
bfac9a6d27
fix typo in ch09-03 close #397
5 years ago
KaiserY
6005ded229
fix typo in ch09-03 close #397
5 years ago
chanble
b5c2d5bf3a
修改了意思不太明确的翻译
5 years ago
TeCHiScy
1a3b29bf83
fix duplicate
...
remove duplicate word "为类型实现 trait"
5 years ago
TeCHiScy
45c0d2ff69
fix typo in ch18-03
...
change "真实" to "展示"
5 years ago
Tengfei Niu
b129149d8a
refactor translation
5 years ago
Tengfei Niu
8826d457b8
fix typo
5 years ago
Tengfei Niu
7bc51791c7
refactor translation
5 years ago
Tengfei Niu
0a86c60e8b
fix typo
5 years ago
Tengfei Niu
fd533cf7d0
fix typo
5 years ago
Tengfei Niu
17b8404d34
refactor code
5 years ago
Tengfei Niu
3acd2a2ded
refactor translation
5 years ago
Tengfei Niu
be4548223d
refactor translation
5 years ago
Tengfei Niu
c290d34418
fix typo
5 years ago
Tengfei Niu
49b8bdaeb9
fix typo
5 years ago
Tengfei Niu
8beec082be
fix typo
5 years ago
Tengfei Niu
2f240e6bb2
fix typo
...
refactor translation
5 years ago
KaiserY
8b00f98009
update ch19-06 close #391
5 years ago
chuigda_whitegive
b3080494ac
io的关联函数 -> io库中的函数
5 years ago
KaiserY
d57ebf03e7
fix format close #387
5 years ago
Liang Yongrui
2f16236ef3
Update ch20-02-multithreaded.md
5 years ago
庄秋彬
e02a707984
Update ch19-06-macros.md
5 years ago
KaiserY
c6f8f09f92
Merge pull request #382 from zqb-all/patch-8
...
Update ch18-02-refutability.md
5 years ago
KaiserY
b575cebe98
Merge pull request #383 from zqb-all/patch-9
...
Update ch18-03-pattern-syntax.md
5 years ago
庄秋彬
a0fd9df823
Update ch19-01-unsafe-rust.md
5 years ago
庄秋彬
af657d18b5
Update ch18-03-pattern-syntax.md
5 years ago
庄秋彬
a646b921b7
Update ch18-02-refutability.md
5 years ago
庄秋彬
db85604b64
Update ch17-03-oo-design-patterns.md
5 years ago
KaiserY
e24c834654
Merge pull request #380 from zqb-all/patch-4
...
Update ch16-02-message-passing.md
5 years ago
庄秋彬
fa7e80f524
Update ch16-02-message-passing.md
5 years ago
庄秋彬
9f974f48a5
Update ch14-02-publishing-to-crates-io.md
5 years ago
Tao Wei
75269ce6a6
fix: fix typo for ch20-02-slow-requests
5 years ago
Tao Wei
63278407f8
fix: fix typo for `ch17-03-oo-design-patterns`
5 years ago
KaiserY
4d4307797d
update appx-07 close #376
5 years ago
KaiserY
887fcde821
update appx-07 close #376
5 years ago
KaiserY
701e404596
update appx-05 close #375
5 years ago
KaiserY
74b24b1ee5
Merge pull request #373 from orzyyyy/typo
...
fix: typo
5 years ago
orzyyyy
b6f9350992
Merge branch 'c-16' into typo
5 years ago
orzyyyy
5a97d7a032
fix: ch-16
5 years ago
orzyyyy
4c2c6ea7e7
chore: tweak indent
5 years ago
orzyyyy
9a36a43d48
fix: typo
5 years ago
Pure White
63d1accd4a
Update ch07-01-packages-and-crates.md
5 years ago
KaiserY
b6b423ba04
update ch04-01
5 years ago
gwy15
77f22cab62
Update ch02-00-guessing-game-tutorial
...
修正将 generic 翻译,从“泛型”改为“通用的”;
调整句子使得符合中文语序
5 years ago
Wei Zhong
9250a9b36a
fix typo
5 years ago
Wei Zhong
198fb5d047
fix typo
5 years ago
orzyyyy
2bf52aa8a8
chore: add entry file for dev
5 years ago
神谷润
0034fff882
update(ch07-03): 错别词修正
5 years ago
KaiserY
f71784c9ee
fix typo in ch09-01 close #366
5 years ago
KaiserY
28d4b315e6
check to appx-07
5 years ago
KaiserY
165c7283a1
check to ch19-01
5 years ago
KaiserY
1689863a61
check to ch13-02
5 years ago
KaiserY
934030a6b3
Merge branch 'master' of https://github.com/KaiserY/trpl-zh-cn
5 years ago
KaiserY
2eea97a90e
check to ch12-05
5 years ago
Tengfei Niu
3be8e1c1c0
Refactor translation
5 years ago
Tengfei Niu
d3d0fec39c
fix typo
5 years ago
wenjun.zhu
4a8d63b5b7
remove duplicated word
5 years ago
KaiserY
8b6f370fae
check to ch11-03
5 years ago
Tengfei Niu
a5671c2051
Refactor translation
5 years ago
Tengfei Niu
ee973db8d1
Refactor translation and fix typo
5 years ago
Tengfei Niu
f3ab2911f4
Refactor translation
5 years ago
Tengfei Niu
ae8160f25b
Refactor translation
5 years ago
Tengfei Niu
f7877ff2de
Refactor translation
5 years ago
Tengfei Niu
7e427233ef
Refactor translation
5 years ago
Tengfei Niu
33072ebca6
refactor translation
5 years ago
Tengfei Niu
bbc19aed54
refactor translation
5 years ago
Tengfei Niu
71b57c45a3
refactor translation
5 years ago
KaiserY
fe22f780dc
Merge pull request #360 from ymxdgyx/master
...
纠正链接名"The Nomicon"为"The Rustonomicon"
5 years ago
Yanxin
3c97daf135
纠正链接名"The Nomicon"为"The Rustonomicon"
...
进入链接看到的名称为The Rustonomicon.
5 years ago
Adamas
4339211d3a
Update ch15-04-rc.md
...
使表达更流畅
5 years ago
KaiserY
eb1527cdb9
check to ch10-02
5 years ago
KaiserY
ba860c10c9
check to ch09-03
5 years ago
KaiserY
4e675ed58d
check to ch04-03
5 years ago
KaiserY
761e478e32
Merge pull request #357 from ICEYSELF/master
...
修复Issue #355
5 years ago
ICEY
8399e6200b
更新commit hash
5 years ago
ICEY
82cdac2b67
查看官方repository,确定官方trpl最终删掉了这个页面
5 years ago
ICEY
cd76054ac0
尝试修复issue #355
5 years ago
shengurun
1f8ae697b9
style: 校正第七章的翻译风格规范
5 years ago
KaiserY
ebaaaabbbb
check to ch02-00
5 years ago
KaiserY
1b2adaa215
update title-page
5 years ago
KaiserY
f5f41d6ab5
update ch07-01-packages-and-crates.md close #353
5 years ago
KaiserY
9e0dab7962
Merge pull request #352 from bud-adamas/patch-1
...
Update ch07-02-defining-modules-to-control-scope-and-privacy.md
5 years ago
Adamas
7b408ccaed
细微的文字问题
5 years ago
Adamas
71bd6a4fff
Update ch07-02-defining-modules-to-control-scope-and-privacy.md
...
修订文字错误
5 years ago
KaiserY
e731803e40
Merge pull request #296 from wukoo/patch-1
...
翻译有点不太准确
5 years ago
pan93412
91a7a83ebf
fix(typo): appendix-07: malformed Markdown link
5 years ago
ccinn
4677c87efd
Update ch07-02-defining-modules-to-control-scope-and-privacy.md
5 years ago
bit-ranger
902f5271d3
修正错别字
5 years ago
shengurun
a8cc6fc499
del: 删除第七章的过时章节
...
1. 删除第七章的过时章节。
2. 对ch07-04中的错误进行修复。
3. 修改SUMMARY.md,以便可以使用mdbook进行最新版第七章的编译。
5 years ago
shengurun
7b140087c7
add: 添加新版ch07-05的翻译
5 years ago
shengurun
403cfdd1e3
add: 添加新版ch07-04的翻译
...
部分内容参考了原版ch07-02中文版里的译法,并纠正拗口的地方。
5 years ago
神谷润
5aa5ff02c2
style: 格式规范化
...
此前规范格式时将该章标题大小选错,现在修正。
5 years ago
shengurun
9fbb40625d
style: 规范翻译格式,保持与源一致
5 years ago
shengurun
f067373618
update: 补全新版ch07-03的翻译
5 years ago
shengurun
d98eb5d71b
update: 添加新版ch07-03第二部分的翻译
5 years ago
shengurun
93f26c177c
add: 添加新版ch07-03,并翻译其第一部分
5 years ago
shengurun
8636abbf61
add: 添加新版ch07-02的翻译
5 years ago
shengurun
dfae8254b9
add: 添加新版ch07-01的翻译
...
对原文的`ch07-01-packages-and-crates.md`进行了大致的翻译。
5 years ago
KaiserY
d9d56c0a61
Merge pull request #342 from craneyuan/patch-1
...
修正语序
5 years ago
craneyuan
f62265236f
修正语序
...
「按照字母顺排序的列表」--> 「按照字典序排列的列表」
5 years ago
shengurun
a6eb6b16dd
add: 添加新版ch07-00的翻译
...
查看了原书的最新版,整个第七章都被改写了。
发现没有对应的中文翻译,所以自己翻译了一下,翻译片段带有浓厚个人色彩。
5 years ago
shengurun
3239a2a036
fix(ch04-03): 更新翻译以符合原文的commit -> 6678e82片段
...
1. 翻译"Rust disallows this, and compilation fails. "
2. 原文的commit此时已经删除有关`..=`的内容,但我个人觉得这段知识比较有帮助,
所以没有进行删除。
5 years ago
shengurun
ba2b40a0ed
fix(ch02-00): 更新教程内容至原文commit hash->6d3e768
...
1. 修改该章开头的commit hash。
2. 将rand包版本改为“0.5.5”,并修改了相关的内容。
3. “生成一个随机数”一节进行删除修改,以符合原文。
5 years ago
shengurun
a27ef17e36
fix(ch03-05): 修改`从循环返回`一节的代码片段
...
将译文中的代码修改成与原文一致,不过个人感觉不影响学习理解,可以无视。
5 years ago
shengurun
c6606efcfa
fix(ch03-02): 添加了`char`类型的大小声明
...
原文中有一句“char type is four bytes in size”没有翻译出来。
5 years ago
Tengfei Niu
20766e7f7e
update title.
...
fix typo.
refactor translation.
5 years ago
Tengfei Niu
08d82aec0d
refactor translation.
5 years ago
Abel liu
2097bac291
Update ch03-02-data-types.md
5 years ago
lwintermelon
e4afc719db
Merge branch 'master' of https://github.com/KaiserY/trpl-zh-cn
5 years ago
lwintermelon
6063462ea9
Update ch18-03-pattern-syntax.md
5 years ago
lwintermelon
3f14724101
Update ch17-03-oo-design-patterns.md
5 years ago
Hu Shuai
aea864bbb3
Update and improve some translations.
5 years ago
Hu Shuai
fe4421d054
Improve some translations.
5 years ago
Hu Shuai
0b54044912
Update ch16-02-message-passing.md
5 years ago
Hu Shuai
687fbf930b
Update ch16-01-threads.md
5 years ago
Hu Shuai
7bbe7457a5
Update ch16-00-concurrency.md
5 years ago
Hu Shuai
06a8a1ba95
update ch14-03
5 years ago