From 87cd344e3ddd92223d35b1d0494a6f2af42ac46a Mon Sep 17 00:00:00 2001 From: Iulian Onofrei <6d0847b9@opayq.com> Date: Mon, 23 Jul 2018 02:03:47 +0300 Subject: [PATCH] Docs: Make marking a default option consistent with other rules (#10650) --- docs/rules/dot-location.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/dot-location.md b/docs/rules/dot-location.md index c4283cf7fec..1fe4a31294a 100644 --- a/docs/rules/dot-location.md +++ b/docs/rules/dot-location.md @@ -20,7 +20,7 @@ This rule aims to enforce newline consistency in member expressions. This rule p The rule takes one option, a string: -* If it is `"object"`, the dot in a member expression should be on the same line as the object portion. The default is `"object"`. +* If it is `"object"` (default), the dot in a member expression should be on the same line as the object portion. * If it is `"property"`, the dot in a member expression should be on the same line as the property portion. ### object