Javadoc fixes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1134983 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-06-12 21:07:57 +00:00
parent 820cc3fcaa
commit b4865d8711
5 changed files with 5 additions and 5 deletions

View File

@ -44,7 +44,7 @@ public class MaxCountExceededException extends MathIllegalStateException {
/**
* Construct the exception with a specific context.
*
* @param specific Specific contexte pattern.
* @param specific Specific context pattern.
* @param max Maximum.
* @param args Additional arguments.
*/

View File

@ -43,7 +43,7 @@ public class NotFiniteNumberException extends MathIllegalNumberException {
/**
* Construct the exception with a specific context.
*
* @param specific Specific contexte pattern.
* @param specific Specific context pattern.
* @param wrong Value that is infinite or NaN.
* @param args Optional arguments.
*/

View File

@ -55,7 +55,7 @@ public class NumberIsTooLargeException extends MathIllegalNumberException {
/**
* Construct the exception with a specific context.
*
* @param specific Specific contexte pattern.
* @param specific Specific context pattern.
* @param wrong Value that is larger than the maximum.
* @param max Maximum.
* @param boundIsAllowed if true the maximum is included in the allowed range.

View File

@ -56,7 +56,7 @@ public class NumberIsTooSmallException extends MathIllegalNumberException {
/**
* Construct the exception with a specific context.
*
* @param specific Specific contexte pattern.
* @param specific Specific context pattern.
* @param wrong Value that is smaller than the minimum.
* @param min Minimum.
* @param boundIsAllowed Whether {@code min} is included in the allowed range.

View File

@ -22,7 +22,7 @@ import org.junit.Assert;
import org.junit.Test;
/**
* Test cases for AbstractIntegerDistribution default implementations
* Test cases for AbstractIntegerDistribution default implementations.
*
* @version $Id$
*/