diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-01-28 23:16:49 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-01-28 23:16:49 +0000 |
commit | 7d685b486b03ddf734fc5d14ea29fbf0ffc9e51c (patch) | |
tree | e5a81591fb2bab9e11aba6ebadc4775ea65993db /libavutil/avstring.h | |
parent | bfe3676feb5548993292b806de45a1cbc746c05f (diff) | |
download | ffmpeg-7d685b486b03ddf734fc5d14ea29fbf0ffc9e51c.tar.gz |
spelling/grammar/consistency review part III
Originally committed as revision 16849 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/avstring.h')
-rw-r--r-- | libavutil/avstring.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/avstring.h b/libavutil/avstring.h index 87d29e3e0f..97c2f38715 100644 --- a/libavutil/avstring.h +++ b/libavutil/avstring.h @@ -29,7 +29,7 @@ * * @param str input string * @param pfx prefix to test - * @param ptr updated after the prefix in str in there is a match + * @param ptr updated if the prefix is matched inside str * @return non-zero if the prefix matches, zero otherwise */ int av_strstart(const char *str, const char *pfx, const char **ptr); @@ -41,7 +41,7 @@ int av_strstart(const char *str, const char *pfx, const char **ptr); * * @param str input string * @param pfx prefix to test - * @param ptr updated after the prefix in str in there is a match + * @param ptr updated if the prefix is matched inside str * @return non-zero if the prefix matches, zero otherwise */ int av_stristart(const char *str, const char *pfx, const char **ptr); |