Skip to content

Commit 45aa6cf

Browse files
committed
修改阅读须知前面措辞以及 web 的路径
1 parent 6d667f1 commit 45aa6cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vuepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default defineUserConfig({
1414
theme: hopeTheme({
1515
sidebar: [
1616
{ text: '首页', link: '/', },
17-
{ text: '阅读须知', link: tutorialPath + `README` },
17+
{ text: '阅读须知', link: `/md` },
1818
{ text: '基本概念', link: tutorialPath + '01基本概念', },
1919
{ text: '使用线程', link: tutorialPath + '02使用线程', },
2020
{ text: '共享数据', link: tutorialPath + '03共享数据', },

md/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 阅读须知
22

3-
  本套教程侧重点并非是专注在如何更好的使用“多线程并发”。我们假设读者最低水平为:**`C++11 + STL + template`**,并没有接触过 C++ 标准并发库,假设略微了解操作系统基本知识。
3+
  本套教程侧重点在于使用 C++ 并发支持库进行多线程编程。我们假设读者最低水平为:C++11 + STL + template,可能没有接触过 C++ 标准并发库,假设略微了解操作系统基本知识。
44

55
  我们强调了模板,因为并发支持库的很多设施其实现是较为简单的,概念与使用,再结合源码讲解会更加简单直观,然而要想阅读学习源码,模板的知识必不可少。不需要模板的水平有多高,也不需要会什么元编程,但是基本的需求得能做到,得会,这里推荐一下:[**《现代C++模板教程》**](https://github.com/Mq-b/Modern-Cpp-templates-tutorial)
66

0 commit comments

Comments
 (0)