Merge branch 'docs-fix-contributing-guide'

Closes https://github.com/awesomeWM/awesome/pull/752.
This commit is contained in:
Daniel Hahler 2016-03-13 17:18:28 +01:00
commit 236624c0fb
2 changed files with 9 additions and 8 deletions

View File

@ -51,7 +51,8 @@ problem.
Please report any issues you may find on [our bugtracker](https://github.com/awesomeWM/awesome/issues).
You can submit pull requests on the [github repository](https://github.com/awesomeWM/awesome).
Please read the @{02-contributing.md} guide for any coding, documentation or patch guidelines.
Please read the [contributing guide](https://github.com/awesomeWM/awesome/blob/master/docs/02-contributing.md)
for any coding, documentation or patch guidelines.
## Status
[![Build Status](https://travis-ci.org/awesomeWM/awesome.svg?branch=master)](https://travis-ci.org/awesomeWM/awesome)

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;