diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2023-09-01 11:39:45 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2023-09-06 01:12:56 +0200 |
commit | 362ebf246c0574e481992961fdae1d6a0d2a6eb0 (patch) | |
tree | ff425a912e6e5e9ce6516e8a1b95600e05871881 /libavutil | |
parent | a76fb12375890d6b5f6a784b3c4e567255041f70 (diff) | |
download | ffmpeg-362ebf246c0574e481992961fdae1d6a0d2a6eb0.tar.gz |
lavu/avstring: fix typo in av_strireplace function doxy
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/avstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/avstring.h b/libavutil/avstring.h index e260263763..9b187e8d92 100644 --- a/libavutil/avstring.h +++ b/libavutil/avstring.h @@ -265,7 +265,7 @@ int av_strncasecmp(const char *a, const char *b, size_t n); /** * Locale-independent strings replace. - * @note This means only ASCII-range characters are replace + * @note This means only ASCII-range characters are replaced. */ char *av_strireplace(const char *str, const char *from, const char *to); |