Fix indenting for code in list

Markdown requires 8 spaces for code in lists.

Ref: https://github.com/awesomeWM/awesome/pull/752#issuecomment-194182994
This commit is contained in:
Daniel Hahler 2016-03-13 17:17:34 +01:00
parent 19d0cbdb65
commit d4218da053
1 changed files with 7 additions and 7 deletions

View File

@ -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;