see #2: typo fixes

This commit is contained in:
Changkun Ou
2019-07-14 23:20:14 +02:00
parent 9779283735
commit 3f51c5ea2e
17 changed files with 3373 additions and 3310 deletions

View File

@@ -197,7 +197,7 @@ auto f = pool.enqueue([](int life) {
std::cout << f.get() << std::endl;
```
[返回目录](./toc.md) | [上一章](./06-regex.md) | [下一章 标准库:文件系统](./08-filesystem.md)
[返回目录](./toc.md) | [上一章](./06-regex.md) | [下一章 文件系统](./08-filesystem.md)
## 进一步阅读的参考资料

View File

@@ -1,12 +1,10 @@
---
title: 第 8 章 标准库:文件系统
title: 第 8 章 文件系统
type: book-zh-cn
order: 8
---
# 第 8 章 标准库:文件系统
> TODO: 这部分内容为 C++17 新增
# 第 8 章 文件系统
[TOC]
@@ -14,10 +12,12 @@ order: 8
## 8.1 文档与链接
TODO:
## 8.2 std::filesystem
TODO:
[返回目录](./toc.md) | [上一章](./07-thread.md) | [下一章 其他杂项](./09-others.md)
## 许可

View File

@@ -55,23 +55,23 @@ void sort(Sortable& c); // c 是一个 Sortable 类型的对象
我们现在来看一个实际的例子。
TODO
TODO:
## 模块
TODO
TODO:
## 合约
TODO
TODO:
## 范围
TODO
TODO:
## 协程
TODO
TODO:
## 总结

View File

@@ -10,27 +10,27 @@ order: 12
## 常用工具
TODO
TODO:
## 代码风格
TODO
TODO:
## 整体性能
TODO
TODO:
## 代码安全
TODO
TODO:
## 可维护性
TODO
TODO:
## 可移植性
TODO
TODO:
[返回目录](./toc.md) | [上一章](./11-appendix1.md)

View File

@@ -84,7 +84,7 @@
+ 7.5 `std::atomic` 与内存顺序
+ 7.6 事务内存
+ 7.7 协程
- [**第 8 章 标准库: 文件系统**](./08-filesystem.md)
- [**第 8 章 文件系统**](./08-filesystem.md)
+ 8.1 文档与链接
+ 8.2 `std::filesystem`
- [**第 9 章 其他杂项**](./09-others.md)