diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-03-02 11:20:07 +0100 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-03-02 16:46:55 -0800 |
commit | a9a5f5b388aaa2f9882a44fddb6f26f2873985e9 (patch) | |
tree | 1f2737ad35ca7015dc507fc85d17dd264e3d18fb | |
parent | 00c016a5f7d23eb790abd3c4d1325a6ebc143f2c (diff) | |
download | ffmpeg-release/2.1.tar.gz |
doc/utils: fix typo for min() descriptionrelease/2.1
Signed-off-by: Paul B Mahol <onemda@gmail.com>
(cherry picked from commit bdf474bcff29f5b40fe14f6fa1dbe10e69c73ab7)
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rw-r--r-- | doc/utils.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/utils.texi b/doc/utils.texi index 937713902a..69a612249a 100644 --- a/doc/utils.texi +++ b/doc/utils.texi @@ -858,7 +858,7 @@ Return 1 if @var{x} is lesser than or equal to @var{y}, 0 otherwise. Return the maximum between @var{x} and @var{y}. @item min(x, y) -Return the maximum between @var{x} and @var{y}. +Return the minimum between @var{x} and @var{y}. @item mod(x, y) Compute the remainder of division of @var{x} by @var{y}. |