Javadoc fixes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1135007 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-06-12 23:57:49 +00:00
parent b4865d8711
commit 5f3ad4479b

View File

@ -54,7 +54,7 @@ public abstract class AbstractRandomGenerator implements RandomGenerator {
/**
* 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 AbstractRandomGenerator implements RandomGenerator {
}
/**
* 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>