From e65cb48b84b355287969a9148c6f3357f72387f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20My=C5=9Bliwiec?= Date: Thu, 7 Nov 2024 11:52:03 +0100 Subject: [PATCH] docs: comment update --- content/techniques/file-upload.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/techniques/file-upload.md b/content/techniques/file-upload.md index c395dbc1a9..c36af51b3d 100644 --- a/content/techniques/file-upload.md +++ b/content/techniques/file-upload.md @@ -65,7 +65,7 @@ This can be used in conjunction with the `FileInterceptor` as follows: @UseInterceptors(FileInterceptor('file')) uploadFileAndValidate(@UploadedFile( new FileSizeValidationPipe(), - // all other validators here + // other pipes can be added here ) file: Express.Multer.File, ) { return file; }