Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 48464 invoked from network); 12 Jan 2011 11:08:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 12 Jan 2011 11:08:14 -0000 Received: (qmail 21244 invoked by uid 500); 12 Jan 2011 11:08:14 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 21128 invoked by uid 500); 12 Jan 2011 11:08:11 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 21119 invoked by uid 99); 12 Jan 2011 11:08:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Jan 2011 11:08:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Jan 2011 11:08:09 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9A56C2388A4B; Wed, 12 Jan 2011 11:07:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1058072 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java Date: Wed, 12 Jan 2011 11:07:42 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110112110742.9A56C2388A4B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Wed Jan 12 11:07:42 2011 New Revision: 1058072 URL: http://svn.apache.org/viewvc?rev=1058072&view=rev Log: Javadoc grammar Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java?rev=1058072&r1=1058071&r2=1058072&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/MathUtils.java Wed Jan 12 11:07:42 2011 @@ -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) {