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:44:30 -0800 |
commit | 4ecb216ad447f1d9ac42505e8a23ca8753a40a9c (patch) | |
tree | 1c62bfdd62af643134e7b37fb6026139d65d3a9e | |
parent | d2b2c66b17a20dc3cad6a979aaf950bedc9824f2 (diff) | |
download | ffmpeg-4ecb216ad447f1d9ac42505e8a23ca8753a40a9c.tar.gz |
doc/utils: fix typo for min() description
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 6517ac0a97..2f1906afeb 100644 --- a/doc/utils.texi +++ b/doc/utils.texi @@ -861,7 +861,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}. |