diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-07 13:03:53 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-12 23:06:23 +0100 |
commit | 58c42af722cebecd86e340dc3ed9ec44b1fe4a55 (patch) | |
tree | 9541c2a43eb2f181d670c04e200a6bd43ad8d4fc /libavutil/avstring.h | |
parent | 8b494b7b2773eb45c0ed364e346602de0d578196 (diff) | |
download | ffmpeg-58c42af722cebecd86e340dc3ed9ec44b1fe4a55.tar.gz |
doxygen: misc consistency, spelling and wording fixes
Diffstat (limited to 'libavutil/avstring.h')
-rw-r--r-- | libavutil/avstring.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/avstring.h b/libavutil/avstring.h index 35b3d46c03..ed4e465cbc 100644 --- a/libavutil/avstring.h +++ b/libavutil/avstring.h @@ -137,7 +137,7 @@ char *av_d2str(double d); char *av_get_token(const char **buf, const char *term); /** - * Locale independent conversion of ASCII characters to upper case. + * Locale-independent conversion of ASCII characters to uppercase. */ static inline int av_toupper(int c) { @@ -147,7 +147,7 @@ static inline int av_toupper(int c) } /** - * Locale independent conversion of ASCII characters to lower case. + * Locale-independent conversion of ASCII characters to lowercase. */ static inline int av_tolower(int c) { @@ -157,13 +157,13 @@ static inline int av_tolower(int c) } /* - * Locale independent case-insensitive compare. + * Locale-independent case-insensitive compare. * @note This means only ASCII-range characters are case-insensitive */ int av_strcasecmp(const char *a, const char *b); /** - * Locale independent case-insensitive compare. + * Locale-independent case-insensitive compare. * @note This means only ASCII-range characters are case-insensitive */ int av_strncasecmp(const char *a, const char *b, size_t n); |