Minor changes for clarity (nw)

master
balr0g 2015-05-18 09:51:17 -04:00
parent 12b316879c
commit 71bac92863
1 changed files with 2 additions and 2 deletions

View File

@ -55,6 +55,6 @@ Contributing
## Coding standard
MAME source code should be viewed and edited with your editor set to use four spaces per tab. Tabs are used for initial indentation of lines, with one tab used per indentation level. Spaces are used for other alignment within a line.
MAME source code should be viewed and edited with your editor set to use four spaces per tab. Tabs are used for initial indentation of lines, with one tab used per indentation level. Spaces are used for other alignment within a line.
Some parts of the code follow GNU style, some parts of the code follow K&R style, mostly depending on who wrote the original version. Above all else, be consistent with what you modify. For new code, the majority tends to prefer GNU style, so if you don't care much, use that.
Some parts of the code follow [GNU style](http://www.gnu.org/prep/standards/html_node/Formatting.html); some parts of the code follow [K&R style](https://en.wikipedia.org/wiki/Indent_style#K.26R_style) -- mostly depending on who wrote the original version. **Above all else, be consistent with what you modify, and keep whitespace changes to a minimum when modifying existing source.** For new code, the majority tends to prefer GNU style, so if you don't care much, use that.