From 8631f39621835d71ce3025e0d76c044a0ea34616 Mon Sep 17 00:00:00 2001 From: Ivan Gavrylenko Date: Tue, 19 Sep 2023 22:35:05 +0300 Subject: [PATCH] fix description for Search decorator --- packages/common/decorators/http/request-mapping.decorator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/decorators/http/request-mapping.decorator.ts b/packages/common/decorators/http/request-mapping.decorator.ts index 62d61cde46d..2b3506efcad 100644 --- a/packages/common/decorators/http/request-mapping.decorator.ts +++ b/packages/common/decorators/http/request-mapping.decorator.ts @@ -111,7 +111,7 @@ export const Head = createMappingDecorator(RequestMethod.HEAD); export const All = createMappingDecorator(RequestMethod.ALL); /** - * Route handler (method) Decorator. Routes all HTTP requests to the specified path. + * Route handler (method) Decorator. Routes HTTP SEARCH requests to the specified path. * * @see [Routing](https://docs.nestjs.com/controllers#routing) *