From a392c206ae75243ec268f36d757e92e04117b728 Mon Sep 17 00:00:00 2001 From: Mateusz Zaremba Date: Tue, 8 Jul 2025 15:43:24 +0100 Subject: [PATCH 1/2] docs(basic-routing.md): align wording with the rest of document --- en/starter/basic-routing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/starter/basic-routing.md b/en/starter/basic-routing.md index aa17aba7fc..278d866647 100755 --- a/en/starter/basic-routing.md +++ b/en/starter/basic-routing.md @@ -40,7 +40,7 @@ app.get('/', (req, res) => { }) ``` -Respond to POST request on the root route (`/`), the application's home page: +Respond to a POST request to the root route (`/`), the application's home page: ```js app.post('/', (req, res) => { @@ -66,4 +66,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) \ No newline at end of file +### [Previous: Express application generator ](/{{ page.lang }}/starter/generator.html)    [Next: Serving static files in Express ](/{{ page.lang }}/starter/static-files.html) From 1b38f127da90d6ea48e79e90fb33d79d1cf4ac28 Mon Sep 17 00:00:00 2001 From: Sebastian Beltran Date: Fri, 1 Aug 2025 13:42:36 -0500 Subject: [PATCH 2/2] Update en/starter/basic-routing.md --- en/starter/basic-routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/starter/basic-routing.md b/en/starter/basic-routing.md index 278d866647..6c20b919e8 100755 --- a/en/starter/basic-routing.md +++ b/en/starter/basic-routing.md @@ -40,7 +40,7 @@ app.get('/', (req, res) => { }) ``` -Respond to a POST request to 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) => {