Skip to content

Commit 15630ea

Browse files
Merge pull request #1418 from dimitropoulos/patch-2
typo: extra closing parenthesis
2 parents 8cb2d73 + 4b351f9 commit 15630ea

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)