summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/avstring.h8
-rw-r--r--libavutil/internal.h2
-rw-r--r--libavutil/parseutils.h2
3 files changed, 6 insertions, 6 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);
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 07e1ef1f05..ae678d5840 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -221,7 +221,7 @@ struct AVDictionary {
#endif
/**
- * Returns NULL if a threading library has not been enabled.
+ * Return NULL if a threading library has not been enabled.
* Used to disable threading functions in AVCodec definitions
* when not needed.
*/
diff --git a/libavutil/parseutils.h b/libavutil/parseutils.h
index cd913d8ceb..0844abb2f0 100644
--- a/libavutil/parseutils.h
+++ b/libavutil/parseutils.h
@@ -75,7 +75,7 @@ int av_parse_color(uint8_t *rgba_color, const char *color_string, int slen,
void *log_ctx);
/**
- * Parses timestr and returns in *time a corresponding number of
+ * Parse timestr and return in *time a corresponding number of
* microseconds.
*
* @param timeval puts here the number of microseconds corresponding