From d4218da053dafcb80a3677978ca3150223928015 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sun, 13 Mar 2016 17:17:34 +0100 Subject: [PATCH] Fix indenting for code in list Markdown requires 8 spaces for code in lists. Ref: https://github.com/awesomeWM/awesome/pull/752#issuecomment-194182994 --- docs/02-contributing.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/02-contributing.md b/docs/02-contributing.md index 2013ae69..8d887e10 100644 --- a/docs/02-contributing.md +++ b/docs/02-contributing.md @@ -16,14 +16,14 @@ Imitate the existing code style. For concrete rules: - Place braces alone on new lines, and do not place braces for single line statement where it is not needed, i.e.: - if(foo) - x = 1; + if(foo) + x = 1; - if(foo) - { - x = 1; - bar(); - } + if(foo) + { + x = 1; + bar(); + } - Do not put a space after if, for, while or function call statements;