This commit is contained in:
KaiserY 2018-12-16 14:46:49 +08:00
parent 3bd190b463
commit 7f538f1f2c
2 changed files with 5 additions and 5 deletions

View File

@ -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: '这些代码不会产生期望的行为。'
}
]

View File

@ -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"> | 这些代码不会产生期望的行为。 |
在大部分情况,我们会指引你将任何不能编译的代码纠正为正确版本。