branch: scratch/editorconfig-cc
commit 606251d77d64547291b9e4dd38fb56d57d4290ae
Author: 10sr <8slashes+...@gmail.com>
Commit: Stefan Monnier <monn...@iro.umontreal.ca>

    Make indentation of sample codes more consistent
---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 5ad8234231..7fe003b7d7 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ only blocks of `web-mode`: it can be achieved by adding 
following to your init.e
 
 ```emacs-lisp
 (add-hook 'editorconfig-custom-hooks
-          (lambda (hash) (setq web-mode-block-padding 0)))
+  (lambda (hash) (setq web-mode-block-padding 0)))
 ```
 
 You can also define your own custom properties and enable them here.
@@ -43,8 +43,8 @@ add a pair of major-mode symbol and its indentation variables:
 
 ```emacs-lisp
 (add-to-list 'editorconfig-indentation-alist
-    ;; Just an example, of course EditorConfig has already included this 
setting!
-    '(c-mode c-basic-offset))
+  ;; Just an example, of course EditorConfig has already included this setting!
+  '(c-mode c-basic-offset))
 ```
 
 For a bit more compilicated cases please take a look at the docstring of this 
variable.

Reply via email to