Skip to content

Commit abba04b

Browse files
committed
add hr
1 parent c7fba41 commit abba04b

16 files changed

+86
-16
lines changed

chapters/00-prelude.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,6 @@
7676

7777
###扩大人脉
7878

79-
如果我们想创造出更好、强大地框架时,那么认识更多的人可能会带来更多的帮助。有时候会同上面那一点一样的效果
79+
如果我们想创造出更好、强大地框架时,那么认识更多的人可能会带来更多的帮助。有时候会同上面那一点一样的效果
80+
81+
<hr>

chapters/01-introduction.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,3 +204,5 @@ Lettuce.send = function (url, method, callback, data) {
204204
不想在这里说太多关于``重构``的东西,可以参考Martin Flower的《重构》一书去多了解一些重构的细节。
205205

206206
这时想说的是,只有代码被测试覆盖住了,那么才能保证重构的过程没有出错。
207+
208+
<hr>

chapters/02-github-fundamentals.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,6 @@ git remote add origin git@github.com:phodal/github-roam.git
7575
git push -u origin master
7676
```
7777

78-
如果你完成了上面的步骤之后,那么我想你想知道你需要怎样的项目.
78+
如果你完成了上面的步骤之后,那么我想你想知道你需要怎样的项目。
79+
80+
<hr>

chapters/03-analytics-project.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ C | 2
3636
- 资料收集: 如``free programming books````You-Dont-Know-JS````Font-Awesome``
3737
- 其他:简历如``Resume``
3838

39-
39+
40+
<hr>

chapters/04-create-your-project.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@
1414

1515
##Hello,World
1616

17-
So,你可以从Hello,World开始试试。
17+
So,你可以从Hello,World开始试试。
18+
19+
<hr>

chapters/05-create-pull-request.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,6 @@ CLA即Contributor License Agreement,在为一些大的组织、机构提交Pul
3535

3636
![Eclipse CLA](./img/eclipse-cla.png)
3737

38-
他们都要求我签署CLA。
38+
他们都要求我签署CLA。
39+
40+
<hr>

chapters/06-build-github-project.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,4 +383,6 @@ SQLiteHelper.prototype.getData = function (url, callback) {
383383
};
384384
```
385385
386-
重构完后的代码比原来还长,这似乎是个问题~~
386+
重构完后的代码比原来还长,这似乎是个问题~~
387+
388+
<hr>

chapters/07-create-project-documents.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,6 @@ React.render(
6767
);
6868
```
6969

70-
而不是需要繁琐的步骤才能进行下一步。
70+
而不是需要繁琐的步骤才能进行下一步。
71+
72+
<hr>

chapters/08-tdd-with-autotest.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,4 +232,6 @@ req.end();
232232
expect(result)
233233
.toEqual(data);
234234
});
235-
});
235+
});
236+
237+
<hr>

chapters/09-refactor-project.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,4 +406,6 @@ public class replaceTemp {
406406
}
407407
408408
}
409-
```
409+
```
410+
411+
<hr>

0 commit comments

Comments
 (0)