X-Git-Url: https://git.videolan.org/?p=ffmpeg.git;a=blobdiff_plain;f=doc%2Fdeveloper.texi;h=fe1f1a2652b9b89aeee8f2380d88d4431c42b8d1;hp=128b46e830d27409e351c99cf7edb2231dabb820;hb=84994421bc8af27a7ee5bb80ca944aada237e34a;hpb=d268b79e3436107c11ee8bcdf9f3645368bb3fcd 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: