span闭合标签修正

修改两处span标签没有正确闭合的问题
This commit is contained in:
autumnsilverleaves@gmail.com 2018-07-18 17:09:42 +08:00
parent 80a434e65c
commit 7a92aed1f3
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 {