|
| 1 | +# How to contribute |
| 2 | + |
| 3 | +## Submit Issue |
| 4 | + |
| 5 | +C++ 11/14/17 issue is used to track the principle description error, `typo` error, and the questions to the author of the book. |
| 6 | + |
| 7 | +- Usually, you may encounter typos, semantic errors, grammatical errors, and etc. These are all `typo` errors. If an error has caused some obstacles to your reading and you strongly believe that the `typo` will also affect others reading. Then you are very welcome to [submit issue](https://github.com/changkun/modern-cpp-tutorial/issues) to report the `typo` error. |
| 8 | + |
| 9 | +- Do not hasitate to submit a principle error because it prevent wrong knowledge being propagation. |
| 10 | +Report the error immediately by [submitting issue](https://github.com/changkun/modern-cpp-tutorial/issues) to avoid the spread of wrong knowledge. |
| 11 | + |
| 12 | +- If you found some part of the book is confusing, you are very welcome to [submit an issue](https://github.com/changkun/modern-cpp-tutorial/issues) for asking questions. |
| 13 | + |
| 14 | +- The book cannot cover the entire C++ of course, however, you are very welcome to [submit an issue](https://github.com/changkun/modern-cpp-tutorial/issues) for a suggestion if you found some important feature is missing in the book. |
| 15 | + |
| 16 | +## Pull Request |
| 17 | + |
| 18 | +"C++ 11/14/17 On the Fly" is open source so that everyone can contribute to contribute to PR. However, it is required read the following instructions carefully before submitting your pull request: |
| 19 | + |
| 20 | +- Before you submit your pull request, make sure that the [issue list](https://github.com/changkun/modern-cpp-tutorial/issues) already contains the problem you want to solve. If not, please refer to the **Submit Issue** section. |
| 21 | + |
| 22 | +- Make sure your PR has improved the `typo` error of more than 50 words, otherwise please do not submit a PR. |
| 23 | + |
| 24 | +- For a PR that fixes principled errors, please don't hesitate, all readers of the book are very grateful for your contribution! |
| 25 | + |
| 26 | +- If you would like to be a co-author of this book, please send an email to ask: `hi at changkun dot us`. |
| 27 | + |
| 28 | +Since this repository provides a variety of reading approaches, thus make sure you have checked all items in the following checklist: |
| 29 | + |
| 30 | + - [ ] If you only making changes to the main part of the book (i.e. the `book` folder), and no changes to the code snippet, then you are good to go; |
| 31 | +- [ ] If you also change the code snippet in the main body of the book, then you need to synchronize the corresponding code snippet in the `code` folder; |
| 32 | +- [ ] If you changes also involve the exercises, you also need to synchronize the contents of the `exercises` folder. |
| 33 | + |
1 | 34 | # 如何参与贡献
|
2 | 35 |
|
3 | 36 | ## 提交 Issue
|
|
36 | 69 | - [ ] 只改动原书正文 `book` 下的部分内容,不涉及代码片段的修改,则无需进行修改
|
37 | 70 | - [ ] 如果同时还改动了正文中的代码片段,则需要同步 `code` 文件夹下对应的代码片段
|
38 | 71 | - [ ] 如果改动还涉及习题的设计,则需要同步 `exercises` 文件夹下的内容
|
39 |
| - |
40 |
| -# How to contribute |
41 |
| - |
42 |
| -## Submit Issue |
43 |
| - |
44 |
| -C++ 11/14/17 issue is used to track the principle description error, `typo` error, and the questions to the author of the book. |
45 |
| - |
46 |
| -- Usually, you may encounter typos, semantic errors, grammatical errors, and etc. These are all `typo` errors. If an error has caused some obstacles to your reading and you strongly believe that the `typo` will also affect others reading. Then you are very welcome to [submit issue](https://github.com/changkun/modern-cpp-tutorial/issues) to report the `typo` error. |
47 |
| - |
48 |
| -- Do not hasitate to submit a principle error because it prevent wrong knowledge being propagation. |
49 |
| -Report the error immediately by [submitting issue](https://github.com/changkun/modern-cpp-tutorial/issues) to avoid the spread of wrong knowledge. |
50 |
| - |
51 |
| -- If you found some part of the book is confusing, you are very welcome to [submit an issue](https://github.com/changkun/modern-cpp-tutorial/issues) for asking questions. |
52 |
| - |
53 |
| -- The book cannot cover the entire C++ of course, however, you are very welcome to [submit an issue](https://github.com/changkun/modern-cpp-tutorial/issues) for a suggestion if you found some important feature is missing in the book. |
54 |
| - |
55 |
| -## Pull Request |
56 |
| - |
57 |
| -"C++ 11/14/17 On the Fly" is open source so that everyone can contribute to contribute to PR. However, it is required read the following instructions carefully before submitting your pull request: |
58 |
| - |
59 |
| -- Before you submit your pull request, make sure that the [issue list](https://github.com/changkun/modern-cpp-tutorial/issues) already contains the problem you want to solve. If not, please refer to the **Submit Issue** section. |
60 |
| - |
61 |
| -- Make sure your PR has improved the `typo` error of more than 50 words, otherwise please do not submit a PR. |
62 |
| - |
63 |
| -- For a PR that fixes principled errors, please don't hesitate, all readers of the book are very grateful for your contribution! |
64 |
| - |
65 |
| -- If you would like to be a co-author of this book, please send an email to ask: `hi at changkun dot us`. |
66 |
| - |
67 |
| -Since this repository provides a variety of reading approaches, thus make sure you have checked all items in the following checklist: |
68 |
| - |
69 |
| - - [ ] If you only making changes to the main part of the book (i.e. the `book` folder), and no changes to the code snippet, then you are good to go; |
70 |
| -- [ ] If you also change the code snippet in the main body of the book, then you need to synchronize the corresponding code snippet in the `code` folder; |
71 |
| -- [ ] If you changes also involve the exercises, you also need to synchronize the contents of the `exercises` folder. |
0 commit comments