Skip to content

Commit 6b98c27

Browse files
author
Librazy
committed
更新标题
1 parent 25d88b9 commit 6b98c27

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

SUMMARY.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
* [spacemacs](editors/spacemacs.md)「wayslog」
1818
* [Rust快速入门](quickstart/quickstart.md)「Naupio」
1919
* [Rust旅程](quickstart/rust-travel.md)
20-
* [基础类型](quickstart/primitive-type.md)
21-
* [向量与字符串](quickstart/vector-string.md)
20+
* [变量绑定与原生类型](quickstart/primitive-type.md)
21+
* [数组、动态数组和字符串](quickstart/vector-string.md)
2222
* [结构体与枚举](quickstart/struct-enum.md)
2323
* [操作流](quickstart/control-flow.md)
2424
* [函数与方法](quickstart/function-method.md)
@@ -42,8 +42,8 @@
4242
* [高阶函数](function/higher_order_function.md)
4343
* [模式匹配](match/overview.md)「wayslog」
4444
* [match关键字](match/match.md)
45-
* [模式](match/pattern.md)
46-
* [Trait (特征)](trait/overview.md)「JohnSmithX」
45+
* [模式 pattern](match/pattern.md)
46+
* [特征 Trait](trait/overview.md)「JohnSmithX」
4747
* [trait关键字](trait/trait.md)
4848
* [trait对象](trait/trait-object.md)
4949
* [泛型](generic/generic.md)「stormgbs」
@@ -55,13 +55,13 @@
5555
* [闭包的语法](closure/syntax.md)
5656
* [闭包的实现](closure/implementation.md)
5757
* [闭包作为参数和返回值](closure/as_argument_return_value.md)
58-
* [集合类型(Collections)](collections/overview.md)「wayslog」
59-
* [动态数组](collections/vec.md)
60-
* [哈希表](collections/hashmap.md)
58+
* [集合类型 Collections](collections/overview.md)「wayslog」
59+
* [动态数组 Vec](collections/vec.md)
60+
* [哈希表 HashMap](collections/hashmap.md)
6161
* [迭代器](iterator/overview.md)「wayslog」
6262
* [迭代器、适配器、消费者](iterator/iterator.md)
6363
* [模块和包系统、Prelude](module/preface.md)「daogangtang」
64-
* [模块module)和包(crate](module/module.md)
64+
* [模块 module 和包 crate](module/module.md)
6565
* [Prelude](module/prelude.md)
6666
* [Option、Result与错误处理](error-handling/option-result.md)「JohnSmithX」
6767
* [宏系统](macro/macro.md)「tennix」
@@ -103,8 +103,8 @@
103103
* [常用数据结构实现](data-structure/preface.md)「Naupio」
104104
* [栈结构](data-structure/stack.md)
105105
* [队列](data-structure/queue.md)
106-
* [优先队列](data-structure/priority_queue.md)
107106
* [二叉树](data-structure/binary_tree.md)
107+
* [优先队列](data-structure/priority_queue.md)
108108
* [链表](data-structure/linked_list.md)
109109
* [图结构](data-structure/graph.md)
110110
* [标准库介绍](std/overview.md)「wayslog」

collections/hashmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 哈希表
1+
# 哈希表 HashMap
22

33
和动态数组`Vec`一样,哈希表(HashMap)也是Rust内置的集合类型之一,同属`std::collections`模块下。
44

quickstart/primitive-type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 基本类型
1+
# 变量绑定与原生类型
22

33
## 变量绑定
44
Rust 通过 let 关键字进行变量绑定。

quickstart/vector-string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 动态数组和字符串
1+
# 数组、动态数组和字符串
22
## 数组和动态数组
33
### 数组
44
Rust 使用数组存储相同类型的数据集。

0 commit comments

Comments
 (0)