Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 610667BEE for ; Sun, 2 Oct 2011 15:48:03 +0000 (UTC) Received: (qmail 56460 invoked by uid 500); 2 Oct 2011 15:48:03 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 56396 invoked by uid 500); 2 Oct 2011 15:48:03 -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 56388 invoked by uid 99); 2 Oct 2011 15:48:03 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Oct 2011 15:48:03 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Sun, 02 Oct 2011 15:48:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BA86123888CD for ; Sun, 2 Oct 2011 15:47:39 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1178198 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/fraction/FractionFormat.java Date: Sun, 02 Oct 2011 15:47:39 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111002154739.BA86123888CD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: psteitz Date: Sun Oct 2 15:47:39 2011 New Revision: 1178198 URL: http://svn.apache.org/viewvc?rev=1178198&view=rev Log: Fixed javadoc typos. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/fraction/FractionFormat.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/fraction/FractionFormat.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/fraction/FractionFormat.java?rev=1178198&r1=1178197&r2=1178198&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/fraction/FractionFormat.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/fraction/FractionFormat.java Sun Oct 2 15:47:39 2011 @@ -80,7 +80,7 @@ public class FractionFormat extends Abst * FractionFormat. * * @param f Fraction object to format - * @return A formatted fraction in proper form. + * @return a formatted fraction in proper form. */ public static String formatFraction(Fraction f) { return getImproperInstance().format(f); @@ -165,8 +165,8 @@ public class FractionFormat extends Abst * offsets of the alignment field * @return the value passed in as toAppendTo. * @see java.text.Format#format(java.lang.Object, java.lang.StringBuffer, java.text.FieldPosition) - * @throws FractionConversionException if the numbrer cannot be converted to a fraction - * @throws MathIllegalArgumentException is obj is not a valid type. + * @throws FractionConversionException if the number cannot be converted to a fraction + * @throws MathIllegalArgumentException if obj is not a valid type. */ @Override public StringBuffer format(final Object obj, @@ -206,7 +206,7 @@ public class FractionFormat extends Abst * Parses a string to produce a {@link Fraction} object. This method * expects the string to be formatted as an improper fraction. * @param source the string to parse - * @param pos input/ouput parsing parameter. + * @param pos input/output parsing parameter. * @return the parsed {@link Fraction} object. */ @Override