# HG changeset patch # User michael # Date 1261924849 0 # Node ID e6e8b4319086c9a23c2300870c2e0001ea52914b # Parent 485faa6e17288fdb783921357007b1d746610142 2nd try on documenting av_gcd(). diff -r 485faa6e1728 -r e6e8b4319086 mathematics.h --- a/mathematics.h Sun Dec 27 12:20:06 2009 +0000 +++ b/mathematics.h Sun Dec 27 14:40:49 2009 +0000 @@ -58,7 +58,7 @@ /** * 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);