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 2011/06/13 01:57:49 UTC

svn commit: r1135007 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/random/AbstractRandomGenerator.java

Author: psteitz
Date: Sun Jun 12 23:57:49 2011
New Revision: 1135007

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

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/random/AbstractRandomGenerator.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/random/AbstractRandomGenerator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/random/AbstractRandomGenerator.java?rev=1135007&r1=1135006&r2=1135007&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/random/AbstractRandomGenerator.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/random/AbstractRandomGenerator.java Sun Jun 12 23:57:49 2011
@@ -54,7 +54,7 @@ public abstract class AbstractRandomGene
 
     /**
      * Clears the cache used by the default implementation of
-     * {@link #nextGaussian}. Implemementations that do not override the
+     * {@link #nextGaussian}. Implementations that do not override the
      * default implementation of {@code nextGaussian} should call this
      * method in the implementation of {@link #setSeed(long)}
      */
@@ -80,7 +80,7 @@ public abstract class AbstractRandomGene
     }
 
     /**
-     * Sets the seed of the underyling random number generator using a
+     * Sets the seed of the underlying random number generator using a
      * {@code long} seed.  Sequences of values generated starting with the
      * same seeds should be identical.
      * <p>