diff --git a/week2/prep-exercises/1-blog-API/README.md b/week2/prep-exercises/1-blog-API/README.md index 356e6ac69..3b727a9fc 100644 --- a/week2/prep-exercises/1-blog-API/README.md +++ b/week2/prep-exercises/1-blog-API/README.md @@ -77,7 +77,7 @@ Follow the steps: 1. Inside `server.js`, add the following starter code in the correct place: ```javascript -app.('/posts/:title', (req, res) => { +app.('/blogs/:title', (req, res) => { // How to get the title and content from the request? // What if the request does not have a title and/or content? if () {