From ff3c66cbc79925db68aafcd2498b017dae5dd504 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Wed, 12 Jan 2011 11:07:42 +0000 Subject: [PATCH] Javadoc grammar git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1058072 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/math/util/MathUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/math/util/MathUtils.java b/src/main/java/org/apache/commons/math/util/MathUtils.java index fe600b066..dfa75385c 100644 --- a/src/main/java/org/apache/commons/math/util/MathUtils.java +++ b/src/main/java/org/apache/commons/math/util/MathUtils.java @@ -469,7 +469,7 @@ public final class MathUtils { * Returns true if both arguments are equal or within the range of allowed * error (inclusive). * Two float numbers are considered equal if there are {@code (maxUlps - 1)} - * (or less) floating point numbers between them (i.e. two adjacent floating + * (or fewer) floating point numbers between them, i.e. two adjacent floating * point numbers are considered equal. * Adapted from @@ -479,7 +479,7 @@ public final class MathUtils { * @param y second value * @param maxUlps {@code (maxUlps - 1)} is the number of floating point * values between {@code x} and {@code y}. - * @return {@code true} if there are less than {@code maxUlps} floating + * @return {@code true} if there are fewer than {@code maxUlps} floating * point values between {@code x} and {@code y}. */ public static boolean equals(double x, double y, int maxUlps) {