Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-03-02 13:20:07 +0300
committerTimothy Gu <timothygu99@gmail.com>2016-03-03 03:45:56 +0300
commit49fb1f66f15ff00c45bb20dfa94c3555503a2605 (patch)
tree755ff238516e8b8f4b4ffff87a55016ddf920131
parentf8b25be7f7519a9b6992d5269ed721a6bda2c4b9 (diff)
doc/utils: fix typo for min() descriptionrelease/2.3
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.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/utils.texi b/doc/utils.texi
index c46ad4523b..72aef7c718 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}.