doc request: 10022; fixed

svn: r13085
This commit is contained in:
Matthias Felleisen 2009-01-13 02:47:26 +00:00
parent 3d3bcfe2f7
commit cba8e0d079

View File

@ -32,18 +32,18 @@
((beginner-* *) (num num num ... -> num)
"to compute the product of all of the input numbers")
((beginner-/ /) (num num num ... -> num)
"to divide the first by the second (and all following) number(s);"
"to divide the first by the second (and all following) number(s); try (/ 3 4) and (/ 3 2 2)"
" only the first number can be zero.")
(max (real real ... -> real)
"to determine the largest number")
(min (real real ... -> real)
"to determine the smallest number")
(quotient (int int -> int)
"to compute the quotient of two integers")
"to divide the first integer into the second; try (quotient 3 4) and (quotient 4 3)")
(remainder (int int -> int)
"to compute the remainder of dividing the first by the second integer")
"to determine the remainder of dividing the first by the second integer")
(modulo (int int -> int)
"to compute first number modulo second number")
"to find the remainder of the division of the first number by the second; try (modulo 4 3) (modulo 4 -3)")
(sqr (num -> num)
"to compute the square of a number")
(sqrt (num -> num)