diff --git a/ferris.js b/ferris.js index 5d014f3..8917365 100644 --- a/ferris.js +++ b/ferris.js @@ -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: '这些代码不会产生期望的行为。' } ] diff --git a/src/ch00-00-introduction.md b/src/ch00-00-introduction.md index e23ba86..974f626 100644 --- a/src/ch00-00-introduction.md +++ b/src/ch00-00-introduction.md @@ -84,7 +84,7 @@ Rust 语言也希望能支持很多其他用户,这里提及的只是最大的 |------------------------------------------------------------------------|--------------------------------------------------| | | 这些代码不能编译! | | | 这些代码会 panic! | -| | 这些代码块包含不安全(unsafe)代码 | +| | 这些代码块包含不安全(unsafe)代码。 | | | 这些代码不会产生期望的行为。 | 在大部分情况,我们会指引你将任何不能编译的代码纠正为正确版本。