Skip to content

Commit 398ffa2

Browse files
[docs] Fix typos/grammar in quick-start.md
1 parent 0f6d597 commit 398ffa2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/3.x.x/getting-started/quick-start.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Quick start
22

3-
This section explains how to handle Strapi for the first time, ([check out our tutorial video](https://www.youtube.com/watch?v=yMl5IcFHA74)).
3+
This section explains how to handle Strapi for the first time, ([check out our video tutorial](https://www.youtube.com/watch?v=yMl5IcFHA74)).
44

55
**Table of contents:**
66
- [1. Create your first project](#_1-create-a-project)
@@ -170,7 +170,7 @@ axios
170170

171171
If you want to get a specific entry, add the `id` of the wanted post at the end of the url.
172172

173-
Examble with Axios:
173+
Example with Axios:
174174

175175
```js
176176
import axios from 'axios';
@@ -194,7 +194,7 @@ axios
194194

195195
Use the `POST` route to create a new entry.
196196

197-
Examble with Axios:
197+
Example with Axios:
198198

199199
```js
200200
import axios from 'axios';
@@ -221,7 +221,7 @@ axios
221221

222222
Use the `PUT` route to update an existing entry.
223223

224-
Examble with Axios:
224+
Example with Axios:
225225

226226
```js
227227
import axios from 'axios';
@@ -250,7 +250,7 @@ axios
250250

251251
Use the `DELETE` route to delete an existing entry.
252252

253-
Examble with Axios:
253+
Example with Axios:
254254

255255
```js
256256
import axios from 'axios';

0 commit comments

Comments
 (0)