From 84994421bc8af27a7ee5bb80ca944aada237e34a Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Sat, 3 Dec 2011 01:11:12 +0100 Subject: doc: remove space between variable and post increment in example code --- doc/developer.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/developer.texi') 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: -- cgit v1.2.3