From bd9b7f35140074000e55d7ac46dd9249ee3ef4a9 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 28 Aug 2020 18:03:57 -0400 Subject: [PATCH] Fix typo - `objectMargins` Looks like this should say `objectMargins` here.. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e77b7d..e1177cf 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ arrays are on one line if they fit (according to `options.maxLength`). - arrayMargins: Defaults to `false`. Whether or not to add “margins” around brackets: - `false`: `{"a": [1]}` - `true`: `{"a": [ 1 ]}` -- arrayMargins: Defaults to `true`. Whether or not to add “margins” around braces: +- objectMargins: Defaults to `true`. Whether or not to add “margins” around braces: - `false`: `{"a": [1]}` - `true`: `{ "a": [1] }`