Skip to content

Commit 47bc9d9

Browse files
authored
Update part9c.md
Grammar.
1 parent fc23240 commit 47bc9d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/9/en/part9c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1719,7 +1719,7 @@ router.post('/', (req, res) => { // highlight-line
17191719
17201720
Instead of calling the request body parsing method explicitly in the route handler, the validation of the input could also be done in a middleware function.
17211721
1722-
We have also add the type definitions to the route handler parameters, and shall use types also in the middleware function _newDiaryParser_:
1722+
We have also added the type definitions to the route handler parameters, and shall also use types in the middleware function _newDiaryParser_:
17231723
17241724
```js
17251725
const newDiaryParser = (req: Request, _res: Response, next: NextFunction) => {

0 commit comments

Comments
 (0)