Skip to content

Commit fc9a368

Browse files
committed
Fixed unclosed HTML tag
1 parent 671d01e commit fc9a368

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/content/0/zh/part0b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ var sendToServer = function(note) {
767767
768768
<div class="tasks">
769769
<!-- <h3>Exercises 0.1.-0.6.</h3>-->
770-
<h3>练习0.1.-0.6.</h3> </h3>
770+
<h3>练习0.1.-0.6.</h3>
771771
772772
<!-- The exercises are submitted via GitHub, and by marking the exercises as done in the [submission system](https://studies.cs.helsinki.fi/stats/courses/fullstackopen).-->
773773
练习通过GitHub提交,并在[提交系统](https://studies.cs.helsinki.fi/stats/courses/fullstackopen)中标记练习完成。

src/content/1/zh/part1b.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -287,10 +287,10 @@ const result = average(2, 5)
287287

288288
<div class="tasks">
289289
<!-- <h3>Exercises 1.3.-1.5.</h3>-->
290-
<h3>练习1.3.-1.5.</h3> </h3
290+
<h3>练习1.3.-1.5.</h3>
291291

292292

293-
<i>我们将继续构建我们在之前练习中开始编写的应用程序。您可以将代码编写到同一个项目中,因为我们只对提交的应用程序的最终状态感兴趣。<i>
293+
<i>我们将继续构建我们在之前练习中开始编写的应用程序。您可以将代码编写到同一个项目中,因为我们只对提交的应用程序的最终状态感兴趣。</i>
294294

295295
<!-- **Pro-tip:** you may run into issues when it comes to the structure of the <i>props</i> that components receive. A good way to make things more clear is by printing the props to the console, e.g. as follows:-->
296296
**建议:**当涉及到组件接收的<i>props</i>的结构时,你可能会遇到问题。一个让事情更明确的好方法是把prop打印到控制台,例如,如下所示。
@@ -333,7 +333,7 @@ const App = () => {
333333
```
334334

335335
<!-- <h4>1.4: course information step4</h4>-->
336-
<h4>1.4:课程信息步骤4</h4
336+
<h4>1.4:课程信息步骤4</h4>
337337

338338
<!-- And then place the objects into an array. Modify the variable definitions of <i>App</i> into the following form and modify the other parts of the application accordingly:-->
339339
然后将对象放入一个数组。将<i>App</i>的变量定义修改为以下形式,并相应地修改应用的其他部分。
@@ -385,7 +385,7 @@ const App = () => {
385385
```
386386

387387
<!-- <h4>1.5: course information step5</h4>-->
388-
<h4>1.5: 课程信息步骤5</h4
388+
<h4>1.5: 课程信息步骤5</h4>
389389
<!-- Let's take the changes one step further. Change the course and its parts into a single JavaScript object. Fix everything that breaks.-->
390390
让我们再进一步改变。把课程和它的部分改成一个单一的JavaScript对象。修复所有破坏的地方。
391391

@@ -417,7 +417,6 @@ const App = () => {
417417
}
418418
```
419419

420-
</div>
421420

422421
<div class="content">
423422

src/content/2/zh/part2a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ App
752752
你还不需要练习的总和。
753753

754754
<!-- The application must work <i>regardless of the number of parts a course has</i>, so make sure the application works if you add or remove parts of a course.-->
755-
<i> 无论课程有多少部分,应用都必须工作<i>,所以要确保在你增加或删除课程的部分时,应用能够工作。
755+
<i> 无论课程有多少部分,应用都必须工作</i>,所以要确保在你增加或删除课程的部分时,应用能够工作。
756756

757757
<!-- Ensure that the console shows no errors!-->
758758
确保控制台没有显示错误!

0 commit comments

Comments
 (0)