Skip to content

Commit ac1a64b

Browse files
Update part3a.md - Fix spelling errors
Fix spelling errors
1 parent b567f5f commit ac1a64b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/3/zh/part3a.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ app.delete('/api/notes/:id', (request, response) => {
834834
一旦插件安装完毕,使用它就非常简单。我们在应用的根部建立一个名为 <i>requests</i> 的目录。我们将所有的 REST 客户端请求保存在该目录中,作为以 <i>.rest</i> 扩展名结尾的文件。
835835

836836
<!-- Let's create a new <i>get\_all\_notes.rest</i> file and define the request that fetches all notes.-->
837-
让我们创建一个新的 <i>get_all\_notes.rest</i> 文件并定义获取所有笔记的请求。
837+
让我们创建一个新的 <i>get\_all\_notes.rest</i> 文件并定义获取所有笔记的请求。
838838

839839
![](../../images/3/12ea.png)
840840

@@ -922,7 +922,7 @@ app.post('/api/notes', (request, response) => {
922922
![](../../images/3/19.png)
923923

924924
<!-- The server will not be able to parse the data correctly without the correct value in the header. It won't even try to guess the format of the data, since there's a [massive amount](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) of potential <i>Content-Types</i>.-->
925-
如果头中没有正确的值,服务器将不能正确地解析数据。它甚至不会尝试猜测数据的格式,因为有 [大量](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) 潜在的 <i>Content-Typees</i>。
925+
如果头中没有正确的值,服务器将不能正确地解析数据。它甚至不会尝试猜测数据的格式,因为有 [大量](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) 潜在的 <i>Content-Types</i>。
926926

927927
<!-- If you are using VS Code, then you should install the REST client from the previous chapter <i>now, if you haven't already</i>. The POST request can be sent with the REST client like this:-->
928928
如果你使用的是 VS Code,那么你应该安装上一章的 REST 客户端 <i>,如果你还没有的话 </i>。可以用 REST 客户端发送 POST 请求,就像这样。
@@ -1130,7 +1130,7 @@ Math.max(...notes.map(n => n.id))
11301130

11311131

11321132
<!-- Data:-->
1133-
数据
1133+
数据:
11341134

11351135
```js
11361136
[

0 commit comments

Comments
 (0)