Merge pull request #220 from SilverLeaves/master

span标签没有正确闭合的更正
This commit is contained in:
KaiserY 2018-07-18 19:09:37 +08:00 committed by GitHub
commit 20d5b821c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ fn main() {
} }
``` ```
<span class="caption">示例 15-20: 展示不能用两个 `Box<T>` 的列表尝试共享第三个列表的所有权/span> <span class="caption">示例 15-20: 展示不能用两个 `Box<T>` 的列表尝试共享第三个列表的所有权</span>
编译会得出如下错误: 编译会得出如下错误:

View File

@ -151,7 +151,7 @@ first use it -->
示例 18-12 展示带有两个字段 `x``y` 的结构体 `Point`,可以通过带有模式的 `let` 语句将其分解: 示例 18-12 展示带有两个字段 `x``y` 的结构体 `Point`,可以通过带有模式的 `let` 语句将其分解:
<span class="filename">文件名: src/main.rs <span class="filename">文件名: src/main.rs</span>
```rust ```rust
struct Point { struct Point {