summaryrefslogtreecommitdiff
path: root/libavutil/mathematics.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-12-27 14:40:49 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-12-27 14:40:49 +0000
commitbac24dd2a5a34befd4c310944647cfcadd7a8ae6 (patch)
treebdb92eb40de8924cfd14347a817e75565add9f24 /libavutil/mathematics.h
parent43ad88e5c0defea5c1191e84b1abec3ba8234d66 (diff)
2nd try on documenting av_gcd().
Originally committed as revision 20939 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/mathematics.h')
-rw-r--r--libavutil/mathematics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/mathematics.h b/libavutil/mathematics.h
index 852e2bf290..12cd369036 100644
--- a/libavutil/mathematics.h
+++ b/libavutil/mathematics.h
@@ -58,7 +58,7 @@ enum AVRounding {
/**
* Returns the greatest common divisor of a and b.
- * If either a or b are 0 or either or both are <0 then behavior is
+ * If both a and b are 0 or either or both are <0 then behavior is
* undefined.
*/
int64_t av_const av_gcd(int64_t a, int64_t b);