You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2008/07/27 21:11:33 UTC

svn commit: r680165 - /commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java

Author: psteitz
Date: Sun Jul 27 12:11:33 2008
New Revision: 680165

URL: http://svn.apache.org/viewvc?rev=680165&view=rev
Log:
Javadoc fixes.

Modified:
    commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java

Modified: commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java
URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java?rev=680165&r1=680164&r2=680165&view=diff
==============================================================================
--- commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java (original)
+++ commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/util/CompositeFormat.java Sun Jul 27 12:11:33 2008
@@ -32,8 +32,8 @@
 
     /**
      * Create a default number format.  The default number format is based on
-     * {@link NumberFormat#getInstance()} with the only customizing is the
-     * maximum number of fraction digits, which is set to 2.  
+     * {@link NumberFormat#getInstance()} with the only customizing that the
+     * maximum number of fraction digits is set to 2.  
      * @return the default number format.
      */
     protected static NumberFormat getDefaultNumberFormat() {
@@ -43,7 +43,7 @@
     /**
      * Create a default number format.  The default number format is based on
      * {@link NumberFormat#getInstance(java.util.Locale)} with the only
-     * customizing is the maximum number of fraction digits, which is set to 2.  
+     * customizing that the maximum number of fraction digits is set to 2.  
      * @param locale the specific locale used by the format.
      * @return the default number format specific to the given locale.
      */
@@ -95,7 +95,7 @@
     }
 
     /**
-     * Parses <code>source</code> for a special double values.  These values
+     * Parses <code>source</code> for special double values.  These values
      * include Double.NaN, Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY.
      *
      * @param source the string to parse