]> gitweb.factorcode.org Git - factor.git/commitdiff
fix typo in docs
authorDoug Coleman <erg@jobim.local>
Thu, 2 Apr 2009 22:00:29 +0000 (17:00 -0500)
committerDoug Coleman <erg@jobim.local>
Thu, 2 Apr 2009 22:00:29 +0000 (17:00 -0500)
basis/math/functions/functions.factor

index 799bb04169f33c488a4b2553a7757c2f04aebfc2..1eac321e3b644b03a31f155c1a19d375096b0d04 100644 (file)
@@ -111,7 +111,7 @@ PRIVATE>
 : lcm ( a b -- c )
     [ * ] 2keep gcd nip /i ; foldable
 
-: divisor? ( x y -- ? )
+: divisor? ( m n -- ? )
     mod 0 = ;
 
 : mod-inv ( x n -- y )