diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-10-05 14:12:42 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-11 00:32:25 +0100 |
commit | da9cea77e314dad2fbc615a76085a0c330741f92 (patch) | |
tree | 7ddbdbf1749d1ee7c66c83f76f66bd50367b246d /doc/developer.texi | |
parent | 2e87b4c51152e0241cae7f655d53920029a0e632 (diff) | |
download | ffmpeg-da9cea77e314dad2fbc615a76085a0c330741f92.tar.gz |
Fix a bunch of common typos.
Diffstat (limited to 'doc/developer.texi')
-rw-r--r-- | doc/developer.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/developer.texi b/doc/developer.texi index dd31e3725b..e484520413 100644 --- a/doc/developer.texi +++ b/doc/developer.texi @@ -49,7 +49,7 @@ mailing list. The code is written in K&R C style. That means the following: @itemize @bullet @item -The control statements are formatted by putting space betwen the statement +The control statements are formatted by putting space between the statement and parenthesis in the following way: @example for (i = 0; i < filter->input_count; i++) @{ @@ -79,7 +79,7 @@ if (!pic || !picref) goto fail; @end example @item -Do not put spaces immediately inside parenthesis. @samp{if (ret)} is +Do not put spaces immediately inside parentheses. @samp{if (ret)} is a valid style; @samp{if ( ret )} is not. @end itemize |