From 8ba278047434deb16a3d3bcb7f92c1e70b2877e8 Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Wed, 2 May 2012 13:26:01 +0000 Subject: [PATCH] Javadoc. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1333036 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math3/optimization/general/CircleProblem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/math3/optimization/general/CircleProblem.java b/src/test/java/org/apache/commons/math3/optimization/general/CircleProblem.java index 4d2f23a31..33d6f3681 100644 --- a/src/test/java/org/apache/commons/math3/optimization/general/CircleProblem.java +++ b/src/test/java/org/apache/commons/math3/optimization/general/CircleProblem.java @@ -51,7 +51,7 @@ class CircleProblem implements DifferentiableMultivariateVectorFunction { /** * @param xError Assumed error for the x-coordinate of the circle points. - * @param xError Assumed error for the y-coordinate of the circle points. + * @param yError Assumed error for the y-coordinate of the circle points. * @param searchResolution Number of points to try when searching the one * that is closest to a given "observed" point. */ @@ -66,7 +66,7 @@ class CircleProblem implements DifferentiableMultivariateVectorFunction { /** * @param xError Assumed error for the x-coordinate of the circle points. - * @param xError Assumed error for the y-coordinate of the circle points. + * @param yError Assumed error for the y-coordinate of the circle points. */ public CircleProblem(double xError, double yError) {