Skip to content

Commit

Permalink
Merge pull request #1332 from wkentaro/fix-typo-contribution
Browse files Browse the repository at this point in the history
Fix typo in code block in CONTRIBUTION.md
  • Loading branch information
k-okada committed Jan 2, 2016
2 parents 27e1d1b + 63e0169 commit 4eef87a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ writing cool code.
Method should be camel-case and starting with lower case.
* include guard
```c+++
```c++
#ifndef PACKAGE_NAME_HEADER_FILE_NAME_H_
#define PACKAGE_NAME_HEADER_FILE_NAME_H_
...
#endif
```
* Function and method

```
```c++
int foo() {
int bar_bar = 0;
return 0;
Expand Down

0 comments on commit 4eef87a

Please sign in to comment.