From 744998a7379861e60cd64836844d0fe9c309e2bd Mon Sep 17 00:00:00 2001 From: Sebastien Brisard Date: Mon, 9 Jan 2012 07:59:06 +0000 Subject: [PATCH] Javadoc (MATH-730). git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1229050 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/math/random/RandomDataImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/math/random/RandomDataImpl.java b/src/main/java/org/apache/commons/math/random/RandomDataImpl.java index bd949f751..3d64ac2a2 100644 --- a/src/main/java/org/apache/commons/math/random/RandomDataImpl.java +++ b/src/main/java/org/apache/commons/math/random/RandomDataImpl.java @@ -590,7 +590,7 @@ public class RandomDataImpl implements RandomData, Serializable { * @param upper the upper bound. * @return a uniformly distributed random value from the interval (lower, upper) * @throws NumberIsTooLargeException if {@code lower >= upper} - * @throws MathIllegalArgumentException if one of the bounds is infinite of + * @throws MathIllegalArgumentException if one of the bounds is infinite or * {@code NaN} * or either bound is infinite or NaN */ @@ -617,7 +617,7 @@ public class RandomDataImpl implements RandomData, Serializable { * @return a uniformly distributed random value from the interval (lower, * upper) * @throws NumberIsTooLargeException if {@code lower >= upper} - * @throws MathIllegalArgumentException if one of the bounds is infinite of + * @throws MathIllegalArgumentException if one of the bounds is infinite or * {@code NaN} * @since 3.0 */