Skip to content

Commit

Permalink
fix: 修复直接在 github 上阅读的路径错误
Browse files Browse the repository at this point in the history
  • Loading branch information
changkun committed Apr 4, 2018
1 parent 8fa5ddb commit 1e54325
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@

## 开始阅读

你可以从[这里](book/toc)开始阅读本书。
你可以从[这里](./book/toc.md)开始阅读本书。

## 相关代码

本书每章中都出现了大量的代码,如果你在跟随本书介绍特性的思路编写自己的代码遇到问题时,不妨读一读随书附上的源码,你可以在[这里](code)中找到书中介绍过的全部的源码,所有代码按章节组织,文件夹名称为章节序号。
本书每章中都出现了大量的代码,如果你在跟随本书介绍特性的思路编写自己的代码遇到问题时,不妨读一读随书附上的源码,你可以在[这里](./code)中找到书中介绍过的全部的源码,所有代码按章节组织,文件夹名称为章节序号。

## 随书习题

Expand Down
2 changes: 1 addition & 1 deletion book/0-preface.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ C++17 则是近三年依赖 C++ 社区一致推进的方向,也指出了**现

本书每章中都出现了大量的代码,如果你在跟随本书介绍特性的思路编写自己的代码遇到问题时,不妨读一读随书附上的源码,你可以在[这里](../code)中找到书中介绍过的全部的源码,所有代码按章节组织,文件夹名称为章节序号。

[返回目录](./toc) | 上一章 | [下一章:迈向 C++11/14/17](./1-intro)
[返回目录](./toc.md) | 上一章 | [下一章:迈向 C++11/14/17](./1-intro.md)

## 许可

Expand Down
2 changes: 1 addition & 1 deletion book/1-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ clean:

不必担心,本书的后续章节将为你介绍这一切。

[返回目录](./toc) | [上一章](./0-preface) | [下一章:语言可用性强化](./2-usability)
[返回目录](./toc.md) | [上一章](./0-preface.md) | [下一章:语言可用性强化](./2-usability.md)

## 进一步阅读的参考文献

Expand Down
4 changes: 2 additions & 2 deletions book/2-usability.md
Original file line number Diff line number Diff line change
Expand Up @@ -945,9 +945,9 @@ std::cout << new_enum::value3 << std::endl
3. ​
> 参考答案[见此](../code/2/solutions)。
> 参考答案[见此](../exercises/2)。
[返回目录](./toc) | [上一章](./1-intro) | [下一章:运行时强化](./3-runtime)
[返回目录](./toc.md) | [上一章](./1-intro.md) | [下一章:运行时强化](./3-runtime.md)
## 进一步阅读的参考文献
Expand Down
6 changes: 3 additions & 3 deletions book/toc.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
## 目录

- [**序言**](./0-preface)
- [**第 1 章 迈向 C++11/14/17**](./1-intro)
- [**序言**](./0-preface.md)
- [**第 1 章 迈向 C++11/14/17**](./1-intro.md)
+ 1.1 被弃用的特性
+ 1.2 与 C 的兼容性
+ 进一步阅读的参考文献
Expand Down Expand Up @@ -98,7 +98,7 @@
+ 未入选特性
+ Concepts

返回目录 | 上一章 | [下一章:序言](./0-preface)
返回目录 | 上一章 | [下一章:序言](./0-preface.md)

## 许可

Expand Down

0 comments on commit 1e54325

Please sign in to comment.