From 3cf418dd23440822f82ea739286162f72ab7216f Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Thu, 19 Jul 2018 11:35:15 +0300 Subject: [PATCH] docs: remove mention of unsupported each option for custom decorators --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb876ece7a..b0c8607e37 100644 --- a/README.md +++ b/README.md @@ -578,7 +578,7 @@ Lets create a decorator called `@IsLongerThan`: title: string; @IsLongerThan("title", { - /* you can also use additional validation options, like "each", "groups" in your custom validation decorators */ + /* you can also use additional validation options, like "groups" in your custom validation decorators. "each" is not supported */ message: "Text must be longer than the title" }) text: string;