From 7c1e4ba9a248aa425a4b4615a26387207fd36176 Mon Sep 17 00:00:00 2001 From: MartinHowarth Date: Sun, 30 Sep 2018 17:52:32 +0100 Subject: [PATCH] Fix a typo in schema level validation README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ac7436..c9bda8d 100644 --- a/README.md +++ b/README.md @@ -261,7 +261,7 @@ Often, some error validation can only be applied when looking at the full struct ```rust #[derive(Debug, Validate, Deserialize)] -#[validate(schema(function = "validate_category", skip_on_field_errors = "false")] +#[validate(schema(function = "validate_category", skip_on_field_errors = "false"))] struct CategoryData { category: String, name: String,