mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-09 00:43:59 +08:00
fix typo
This commit is contained in:
parent
3bd190b463
commit
7f538f1f2c
@ -1,19 +1,19 @@
|
||||
var ferrisTypes = [
|
||||
{
|
||||
attr: 'does_not_compile',
|
||||
title: 'This code does not compile!'
|
||||
title: '这些代码不能编译!'
|
||||
},
|
||||
{
|
||||
attr: 'panics',
|
||||
title: 'This code panics!'
|
||||
title: '这些代码会 panic!'
|
||||
},
|
||||
{
|
||||
attr: 'unsafe',
|
||||
title: 'This code block contains unsafe code.'
|
||||
title: '这些代码块包含不安全(unsafe)代码。'
|
||||
},
|
||||
{
|
||||
attr: 'not_desired_behavior',
|
||||
title: 'This code does not produce the desired behavior.'
|
||||
title: '这些代码不会产生期望的行为。'
|
||||
}
|
||||
]
|
||||
|
||||
|
@ -84,7 +84,7 @@ Rust 语言也希望能支持很多其他用户,这里提及的只是最大的
|
||||
|------------------------------------------------------------------------|--------------------------------------------------|
|
||||
| <img src="img/ferris/does_not_compile.svg" class="ferris-explain"> | 这些代码不能编译! |
|
||||
| <img src="img/ferris/panics.svg" class="ferris-explain"> | 这些代码会 panic! |
|
||||
| <img src="img/ferris/unsafe.svg" class="ferris-explain"> | 这些代码块包含不安全(unsafe)代码 |
|
||||
| <img src="img/ferris/unsafe.svg" class="ferris-explain"> | 这些代码块包含不安全(unsafe)代码。 |
|
||||
| <img src="img/ferris/not_desired_behavior.svg" class="ferris-explain"> | 这些代码不会产生期望的行为。 |
|
||||
|
||||
在大部分情况,我们会指引你将任何不能编译的代码纠正为正确版本。
|
||||
|
Loading…
Reference in New Issue
Block a user