Skip to content

Commit 13c251d

Browse files
committed
There should be a line breaker before list in MD
RST list should manually iterate the number or use #.
1 parent 718642e commit 13c251d

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

doc/build_and_install/build_from_source_cn.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
为了编译PaddlePaddle,我们需要
1010

1111
1. 一台电脑,可以装的是 Linux, Windows 或者 MacOS 操作系统
12-
1. Docker
12+
2. Docker
1313

1414
不需要依赖其他任何软件了。即便是 Python 和 GCC 都不需要,因为我们会把所有编译工具都安装进一个 Docker 镜像里。
1515

doc/build_and_install/build_from_source_en.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Requirements
99
To build PaddlePaddle, you need
1010

1111
1. A computer -- Linux, Windows, MacOS.
12-
1. Docker.
12+
2. Docker.
1313

1414
Nothing else. Not even Python and GCC, because you can install all build tools into a Docker image.
1515
We run all the tools by running this image.

doc/dev/contribute_to_paddle_cn.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ upstream
222222
## 提交代码的一些约定
223223

224224
为了使评审人在评审代码时更好地专注于代码本身,请您每次提交代码时,遵守以下约定:
225+
225226
1. 请保证Travis-CI 中单元测试能顺利通过。如果没过,说明提交的代码存在问题,评审人一般不做评审。
226227
2. 提交PUll Request前:
227228
- 请注意commit的数量:
@@ -231,6 +232,7 @@ upstream
231232
3. 如果解决了某个Issue的问题,请在该PUll Request的**第一个**评论框中加上:`fix #issue_number`,这样当该PUll Request被合并后,会自动关闭对应的Issue。关键词包括:close, closes, closed, fix, fixes, fixed, resolve, resolves, resolved,请选择合适的词汇。详细可参考[Closing issues via commit messages](https://help.github.com/articles/closing-issues-via-commit-messages)
232233

233234
此外,在回复评审人意见时,请您遵守以下约定:
235+
234236
1. 评审人的每个意见都必须回复(这是开源社区的基本礼貌,别人帮了忙,应该说谢谢):
235237
- 对评审意见同意且按其修改完的,给个简单的`Done`即可;
236238
- 对评审意见不同意的,请给出您自己的反驳理由。

doc/howto/capi/organization_of_the_inputs_cn.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ PaddlePaddle中一个计算层的输出数据组织方式和输入数据组织
274274
如果是一个序列输入/输出由 `sequence start positions` 来记录输入/输出的序列信息。
275275
276276
于是,在组织神经网络输入时,需要思考完成以下工作:
277+
277278
1. 为每一个输入/输出创建`argument`。
278279
- C-API 中操作`argument`的接口请查看[argument.h](https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/capi/arguments.h)。
279280
1. 为每一个`argument`创建`paddle_matrix`或者`paddle_ivector`来存储数据。

0 commit comments

Comments
 (0)