Corrected error in exception text.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@556484 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2007-07-16 01:20:12 +00:00
parent c4b439e7aa
commit 5976a62dee
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ public class RandomDataImpl implements RandomData, Serializable {
public double nextUniform(double lower, double upper) {
if (lower >= upper) {
throw new IllegalArgumentException
("lower bound must be <= upper bound");
("lower bound must be < upper bound");
}
RandomGenerator rand = getRan();