From cba8e0d079778689de3caf6d50e897350dc2b3b0 Mon Sep 17 00:00:00 2001 From: Matthias Felleisen Date: Tue, 13 Jan 2009 02:47:26 +0000 Subject: [PATCH] doc request: 10022; fixed svn: r13085 --- collects/lang/private/beginner-funs.ss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/collects/lang/private/beginner-funs.ss b/collects/lang/private/beginner-funs.ss index 83562ce7e0..6db345a023 100644 --- a/collects/lang/private/beginner-funs.ss +++ b/collects/lang/private/beginner-funs.ss @@ -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)