Fixed javadoc typos.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1462485 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2013-03-29 14:36:19 +00:00
parent 0dbb8ab724
commit c72ea892f6
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ public interface MultivariateMatrixFunction {
* Compute the value for the function at the given point.
* @param point point at which the function must be evaluated
* @return function value for the given point
* @exception IllegalArgumentException if points dimension is wrong
* @exception IllegalArgumentException if point's dimension is wrong
*/
double[][] value(double[] point)
throws IllegalArgumentException;

View File

@ -28,7 +28,7 @@ public interface MultivariateVectorFunction {
* Compute the value for the function at the given point.
* @param point point at which the function must be evaluated
* @return function value for the given point
* @exception IllegalArgumentException if points dimension is wrong
* @exception IllegalArgumentException if point's dimension is wrong
*/
double[] value(double[] point)
throws IllegalArgumentException;