Merge branch 'docs-fix-contributing-guide'
Closes https://github.com/awesomeWM/awesome/pull/752.
This commit is contained in:
commit
236624c0fb
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue