summaryrefslogtreecommitdiff
path: root/doc/developer.texi
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2011-12-03 01:11:12 +0100
committerJanne Grunau <janne-libav@jannau.net>2011-12-03 01:11:12 +0100
commit84994421bc8af27a7ee5bb80ca944aada237e34a (patch)
tree8cd6d05d8b29481950cd5c64b3a801553dd06fe1 /doc/developer.texi
parentd268b79e3436107c11ee8bcdf9f3645368bb3fcd (diff)
doc: remove space between variable and post increment in example code
Diffstat (limited to 'doc/developer.texi')
-rw-r--r--doc/developer.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer.texi b/doc/developer.texi
index 128b46e830..fe1f1a2652 100644
--- a/doc/developer.texi
+++ b/doc/developer.texi
@@ -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: