From 978ed0e8c0145bef49ce34ee3c9cfcab2f62c9fd Mon Sep 17 00:00:00 2001 From: TheCowMooooo <58637685+TheCowMooooo@users.noreply.github.com> Date: Thu, 17 Dec 2020 19:18:21 -0800 Subject: [PATCH] Fixed indent issue in first example The max and min length strings were indented with spaces, while everything else was with tabs. This caused odd display issues. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85b579f..cec7ead 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,8 @@ _json-gate_ supports most of [JSON Schema Draft 3](http://tools.ietf.org/html/dr properties: { query: { type: 'string', - minLength: 1, - maxLength: 64, + minLength: 1, + maxLength: 64, required: true }, maxResults: {