summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: