From 1f69ee6ab468b287456afeafc936c1f8165b6392 Mon Sep 17 00:00:00 2001 From: Kedar Joshi Date: Tue, 10 Jul 2018 16:54:24 +0530 Subject: [PATCH] Fixes typo in documentation --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 150d5b0..d84facf 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ * **`xmlTools.ignoreDefaultNamespace`:** Ignore default xmlns attributes when evaluating XPath. * **`xmlTools.persistXPathQuery`:** Remember the last XPath query used. * **`xmlTools.removeCommentsOnMinify`:** Remove XML comments during minification. -* **`xmlTools.splitAttributesOnFormat`:** Put each attribute on a new line when formatting XML. Overrides `xmlTools.splitXmlsOnFormat` if set to `true`. (V2 Formatter Only) +* **`xmlTools.splitAttributesOnFormat`:** Put each attribute on a new line when formatting XML. Overrides `xmlTools.splitXmlnsOnFormat` if set to `true`. (V2 Formatter Only) * **`xmlTools.splitXmlnsOnFormat`:** Put each xmlns attribute on a new line when formatting XML. * **`xmlTools.xmlFormatterImplementation`:** Supported XML Formatters: `classic`, `v2`. * **`xmlTools.xqueryExecutionArguments`:** Arguments to be passed to the XQuery execution engine. diff --git a/package.json b/package.json index b560753..5848896 100644 --- a/package.json +++ b/package.json @@ -113,7 +113,7 @@ "xmlTools.splitAttributesOnFormat": { "type": "boolean", "default": false, - "description": "Put each attribute on a new line when formatting XML. Overrides `xmlTools.splitXmlsOnFormat` if set to `true`.", + "description": "Put each attribute on a new line when formatting XML. Overrides `xmlTools.splitXmlnsOnFormat` if set to `true`.", "scope": "resource" }, "xmlTools.splitXmlnsOnFormat": {