Skip to content

Commit 193528a

Browse files
committed
docs(techniques): fix typo in validation.md
1 parent bf1d97a commit 193528a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/techniques/validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ In addition, the `ParseArrayPipe` may come in handy when parsing query parameter
375375
```typescript
376376
@Get()
377377
findByIds(
378-
@Query('id', new ParseArrayPipe({ items: Number, separator: ',' }))
378+
@Query('ids', new ParseArrayPipe({ items: Number, separator: ',' }))
379379
ids: number[],
380380
) {
381381
return 'This action returns users by ids';

0 commit comments

Comments
 (0)