doc: remove space between variable and post increment in example code

This commit is contained in:
Janne Grunau 2011-12-03 01:11:12 +01:00
parent d268b79e34
commit 84994421bc
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ The code is written in K&R C style. That means the following:
The control statements are formatted by putting space betwen the statement and parenthesis
in the following way:
@example
for (i = 0; i < filter->input_count; i ++) @{
for (i = 0; i < filter->input_count; i++) @{
@end example
@item
The case statement is always located at the same level as the switch itself: