You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2011/06/20 21:25:11 UTC

svn commit: r1137752 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/dfp/Dfp.java

Author: luc
Date: Mon Jun 20 19:25:11 2011
New Revision: 1137752

URL: http://svn.apache.org/viewvc?rev=1137752&view=rev
Log:
typos

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/dfp/Dfp.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/dfp/Dfp.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/dfp/Dfp.java?rev=1137752&r1=1137751&r2=1137752&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/dfp/Dfp.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/dfp/Dfp.java Mon Jun 20 19:25:11 2011
@@ -31,7 +31,7 @@ import org.apache.commons.math.FieldElem
  *  <ol>
  *    <li>Decimal math, or close to it</li>
  *    <li>Settable precision (but no mix between numbers using different settings)</li>
- *    <li>Portability.  Code should be keep as portable as possible.</li>
+ *    <li>Portability.  Code should be kept as portable as possible.</li>
  *    <li>Performance</li>
  *    <li>Accuracy  - Results should always be +/- 1 ULP for basic
  *         algebraic operation</li>
@@ -66,7 +66,7 @@ import org.apache.commons.math.FieldElem
  *
  *  <p>The radix of 10000 was chosen because it should be faster to operate
  *  on 4 decimal digits at once instead of one at a time.  Radix 10 behavior
- *  can be realized by add an additional rounding step to ensure that
+ *  can be realized by adding an additional rounding step to ensure that
  *  the number of decimal digits represented is constant.</p>
  *
  *  <p>The IEEE standard specifically leaves out internal data encoding,