Skip to content

Commit 697041d

Browse files
authored
final commit
1 parent a3761a0 commit 697041d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎server/index.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const PORT = process.env.PORT || 3001;
1313

1414
const app = express();
1515

16-
// allow x-www-form-urlencoded body type in postman requests
16+
// allow x-www-form-urlencoded body type in postman request
1717
app.use(
1818
bodyParser.urlencoded({
1919
extended: false
@@ -54,4 +54,4 @@ app.get('*', (req, res) => {
5454
});
5555
app.listen(PORT, () => {
5656
console.log(`Server listening on ${PORT}`);
57-
});
57+
});

0 commit comments

Comments
 (0)