Skip to content

Commit

Permalink
Update routing.md
Browse files Browse the repository at this point in the history
Remove EOL colons to conform with doc code style
  • Loading branch information
crandmck authored Mar 7, 2024
1 parent 5248868 commit 63edc80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions en/guide/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ const router = express.Router()
const timeLog = (req, res, next) => {
console.log('Time: ', Date.now())
next()
};
router.use(timeLog);
}
router.use(timeLog)

// define the home page route
router.get('/', (req, res) => {
Expand Down

0 comments on commit 63edc80

Please sign in to comment.