Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions en/starter/basic-routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ app.get('/', (req, res) => {
})
```

Respond to POST request on the root route (`/`), the application's home page:
Respond to a POST request on the root route (`/`), the application's home page:

```js
app.post('/', (req, res) => {
Expand All @@ -65,4 +65,4 @@ app.delete('/user', (req, res) => {

For more details about routing, see the [routing guide](/{{ page.lang }}/guide/routing.html).

### [Previous: Express application generator ](/{{ page.lang }}/starter/generator.html)    [Next: Serving static files in Express ](/{{ page.lang }}/starter/static-files.html)
### [Previous: Express application generator ](/{{ page.lang }}/starter/generator.html)    [Next: Serving static files in Express ](/{{ page.lang }}/starter/static-files.html)