Commit Graph

137 Commits

Author SHA1 Message Date
周炀
529e44511f Update magic.rst
fix a mistake
2017-05-19 20:46:12 +08:00
Ling.Li
0f89e39337 Ling.Li: 1. Finish modifying Chapter 3. 2017-04-20 19:26:47 +08:00
Ling.Li
f4886131b4 Ling.Li: 1. It seems that I forgot the syntax of internal links and made a lot of mistakes. Now I've fixed them. 2017-04-20 16:49:26 +08:00
Ling.Li
29efb87356 Ling.Li: 1. Finish writing Chapter 4. 2. Add internal links at Chapter 5. 3. Add Chapter 4 into TOC. 2017-04-20 16:44:07 +08:00
Ling.Li
033aaeebd4 Ling.Li: 1. Replace the broken link of the emacs config file in Chapter 9 with a new available one. 2017-04-20 12:21:07 +08:00
Ling.Li
524e931926 Ling.Li: 1. Fix a bug in Chapter 5. 2. Try a new way of formatting. 2017-04-20 02:11:47 +08:00
Ling.Li
30e831b1bf Ling.Li: Correct the chapter number of Chapter 5 (previous Chapter 4). 2017-04-20 02:07:09 +08:00
Ling.Li
c7daabe5a2 Ling.Li: 1. Finish modify Chapter 4. 2. Fix a typo in Chapter 7. 2017-04-20 02:06:22 +08:00
Ling.Li
440a735c14 Ling.Li: 1. Finish modify Chapter 7. 2. Fix some broken internal links. 3. Fix a typo in Chapter 8. 2017-04-20 00:11:42 +08:00
Ling.Li
72c66cc9ef Ling.Li: Remove the README.md created by Ling.Li. 2017-04-19 21:10:08 +08:00
Ling.Li
32a8e94646 Ling.Li: Fix a typo in Chapter 8. 2017-04-19 21:09:14 +08:00
李凌
c373beaee3 Ling.Li: Finish modify Chapter 8. 2017-04-19 21:01:29 +08:00
李凌
58731b75e9 Ling.Li: Fix the section mistake in Chapter 9. 2017-04-19 19:49:26 +08:00
李凌
60c840e5c6 Ling.Li: Finish modify Chapter 9. Replace the traslation of the term 'Namespace'. 2017-04-19 19:38:12 +08:00
李凌
a42301f98d Ling.Li: Remove indents in Chapter 10. 2017-04-19 14:28:07 +08:00
李凌
4d5021621e Ling.Li: Fix a typo. 2017-04-19 14:26:11 +08:00
李凌
fee366c598 Ling.Li: Partly modify Chapter 9. It's so late and I need to go to bed. 2017-04-19 01:30:07 +08:00
Ling.Li
39d12a755c Ling.Li: Correct the chapter no. 2017-04-19 00:35:42 +08:00
Ling.Li
46a0f13d51 Ling.Li: Finish modify Chapter 10. 2017-04-19 00:34:16 +08:00
Ling.Li
fd8ef07666 Ling.Li: Please note that Google C++ Style Guide has added a new chapter 'Functions' as Chapter 4. So the current Chapter 11 is the previous Chapter 10. 2017-04-19 00:03:26 +08:00
Ling.Li
8f9f6fe22d Ling.Li: Finish modify Chapter 11. 2017-04-19 00:01:02 +08:00
m-final
88875376d2 typo 2017-02-08 15:22:36 +08:00
Yang.Y
cb3981c5ac 查漏补缺
修订 PR #55
2017-01-22 22:06:47 +08:00
Yang.Y
21e0e0746c Merge pull request #54 from baotiao/master
add template programming
2017-01-22 21:57:41 +08:00
wikinee
c3342f0c1c 修复部分翻译错误;修改部分不正确的跳转和ref 2017-01-09 11:26:37 +08:00
baotiao
861645b3a3 add template programming 2016-12-22 18:46:48 +08:00
Yuancheng Zhang
72d40b637e update 2016-10-04 17:54:19 -07:00
Yuancheng Zhang
bb4459ab9d 在第六章的译者笔记里,标记了一段code的格式。
标记后code变成等距字体看着舒服一些
2016-10-04 17:49:26 -07:00
Jing Ma
c68132602d Fixed typo. 2016-04-28 20:39:57 +08:00
Jasper Wan
a0d24679a8 Fix " on line 132 2016-04-21 16:45:06 +08:00
Jasper Wan
c3ba7d8251 Update headers.rst and fix #includes
* 已参照<http://google.github.io/styleguide/cppguide.html#Header_Files>内容更新
* 修正`#includes`为`#include`
* 注:最新的规范已经将“1.5. 函数参数的顺序”一节移动到“Functions”一章中,本commit删除这一节,删去的代码如下:
```rst

1.5. 函数参数的顺序
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. tip::

    定义函数时, 参数顺序依次为: 输入参数, 然后是输出参数.

C/C++ 函数参数分为输入参数, 输出参数, 和输入/输出参数三种. 输入参数一般传值或传 ``const`` 引用, 输出参数或输入/输出参数则是非 ``const`` 指针. 对参数排序时, 将只输入的参数放在所有输出参数之前. 尤其是不要仅仅因为是新加的参数, 就把它放在最后; 即使是新加的只输入参数也要放在输出参数之前.

这条规则并不需要严格遵守. 输入/输出两用参数 (通常是类/结构体变量) 把事情变得复杂, 为保持和相关函数的一致性, 你有时不得不有所变通.
```
2016-04-21 16:42:36 +08:00
bowman han
f6286de025 解释了self contained header 2016-04-20 18:35:16 +08:00
iccz
23244c60c6 添加缺失的内容 2016-02-09 11:49:13 +08:00
np-csu
6797a5bc2e Update headers.rst 2016-01-25 11:20:12 +08:00
np-csu
6f10ecec54 Update scoping.rst 2016-01-23 14:54:59 +08:00
lcc_comm
7dd7a76c57 Fixed for better translation. 2016-01-19 10:51:44 +08:00
lcc_comm
2f440ccf41 Revert "Fix incongruous punctuation."
This reverts commit 61af282627.
2016-01-19 10:50:13 +08:00
没头脑
61af282627 Fix incongruous punctuation. 2016-01-18 17:15:49 +00:00
Yang.Y
ae13703040 Merge pull request #27 from alvisisme/master
补充了一个反引号
2016-01-15 15:28:32 +08:00
Alvis
5127efeec1 更正模版元错别字 2016-01-15 15:21:22 +08:00
Alvis
bf75d47654 补充了一个反引号
“前置声明来自命名空间 ``std::` 的 symbol 时,其行为未定义。”这一句缺少一个反引号
2016-01-15 09:52:43 +08:00
coca-kuma
db81cc5212 fix typing mistake 2015-11-27 17:26:01 +08:00
SCaffrey
0e1fee8d91 Update others.rst
Add a blank space to fix
2015-11-14 17:22:42 +08:00
非天
919dcf244e magic.rst: 更新一处链接
更新了cpplint.py的链接地址
2015-11-09 11:17:20 +08:00
WANG Lei
a4084a6c7b Update headers.rst 2015-11-03 14:45:29 +08:00
Yang.Y
3dfeaf3223 Merge pull request #17 from lzx1413/patch-2
Fixes typo-
2015-10-30 08:53:05 +08:00
HorkyChen
c25d812e5f 更改Forward Declaration的翻译从前向声明改为前置声明
前置声明更为通用。
2015-10-30 00:00:25 +08:00
acgtyrant
7ff8947298 naming.rst: 增加「译者(acgtyrant)笔记」 2015-10-08 21:46:14 +08:00
lzx1413
1198d2bca7 Update comments.rst 2015-09-30 17:41:04 +08:00
Isaac Ge
aa8c280ac9 index.rst: add lilinsanity to contributors. 2015-09-08 20:57:38 +08:00