Skip to content

Commit 4b351f9

Browse files
typo: extra closing parenthesis
1 parent 8cb2d73 commit 4b351f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/pipes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async findOne(@Param('id', ParseIntPipe) id: number) {
4343
}
4444
```
4545

46-
This ensures that one of the following two conditions is true: either the parameter we receive in the `findOne()` method is a number (as expected in our call to `this.catsService.findOne())`), or an exception is thrown before the route handler is called.
46+
This ensures that one of the following two conditions is true: either the parameter we receive in the `findOne()` method is a number (as expected in our call to `this.catsService.findOne()`), or an exception is thrown before the route handler is called.
4747

4848
For example, assume the route is called like:
4949

0 commit comments

Comments
 (0)