Skip to content

Commit

Permalink
rename altered rendering of sample code block
Browse files Browse the repository at this point in the history
  • Loading branch information
mpictor committed Jan 2, 2015
1 parent f0b2d97 commit c1892fe
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ SC's source has been reformatted with astyle. When making changes, try
to match the current formatting. The main points are:

- compact (java-style) brackets:
if( a == 3 ) {
c = 5;
function( a, b );
} else {
somefunc( );
}
```C
if( a == 3 ) {
c = 5;
function( a, b );
} else {
somefunc( );
}
```
- indents are 4 spaces
- no tab characters
- line endings are LF (linux), not CRLF (windows)
Expand Down

0 comments on commit c1892fe

Please sign in to comment.