]> code.delx.au - gnu-emacs-elpa/commitdiff
corrected documentation of multi-line variable declaration
authormooz <stillpedant@gmail.com>
Mon, 21 Feb 2011 03:44:47 +0000 (12:44 +0900)
committermooz <stillpedant@gmail.com>
Mon, 21 Feb 2011 03:44:47 +0000 (12:44 +0900)
README.md

index 04d5dd17d1861a6afc7a2e561dfdc75259bceb91..3f863f1838c131430b7a5ad66d33c8a0d8f66376 100644 (file)
--- a/README.md
+++ b/README.md
@@ -48,8 +48,8 @@ When js2-consistent-level-indent-inner-bracket-p is nil
                        return validate(v);
                    });
 
-Fixed ugly indentation with multi-line variable declaration
------------------------------------------------------------
+Pretty multi-line variable declaration
+--------------------------------------
 
 In original js2-mode.el,
 
@@ -57,7 +57,7 @@ In original js2-mode.el,
     bar = 20,
     baz = 30;
 
-In this js2-mode.el,
+In this js2-mode.el, when the value `js2-use-ast-for-indentation-p` is non-nil (default nil),
 
     var foo = 10,
         bar = 20,