# HG changeset patch # User zas_ # Date 1213006234 0 # Node ID 83d3abd80b64b39c5756c9291f659efc814fb724 # Parent c3fc736fb927f8108d7ef4efb113fe7fc081c6c8 Minor fixes and add a note about variable declaration. diff -r c3fc736fb927 -r 83d3abd80b64 CODING --- a/CODING Mon Jun 09 07:14:46 2008 +0000 +++ b/CODING Mon Jun 09 10:10:34 2008 +0000 @@ -34,10 +34,10 @@ Example: -I done some bugfixes. +I did some bugfixes. Library: -- I change the interface -- added some new functions +- the interface was modified +- new functions were added -------------------------------------------------------------------------------- @@ -92,7 +92,7 @@ Functions: -int bar(, , ) +gint bar(, , ) { ; ... @@ -128,6 +128,8 @@ In "function()" there are no space before '('. You MAY use more tabs/spaces than you OUGHT TO (according to this CodingStyle), if it makes your code nicer in being verticaly indented. +Variables declarations should be followed by a blank line and should always be +at the start of the block. --------------------------------------------------------------------------------