Repository: commons-math Updated Branches: refs/heads/MATH_3_X b5276e9ea -> 7b84dccfc
Fixed javadoc. Thanks to Ole Ersoy for the patch. Github: closes #19 Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/7b84dccf Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/7b84dccf Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/7b84dccf Branch: refs/heads/MATH_3_X Commit: 7b84dccfcab2a7569c8b663bd74d22d7b38921b8 Parents: b5276e9 Author: Luc Maisonobe <l...@apache.org> Authored: Tue Dec 15 19:46:07 2015 +0100 Committer: Luc Maisonobe <l...@apache.org> Committed: Tue Dec 15 19:46:07 2015 +0100 ---------------------------------------------------------------------- src/main/java/org/apache/commons/math3/FieldElement.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-math/blob/7b84dccf/src/main/java/org/apache/commons/math3/FieldElement.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/math3/FieldElement.java b/src/main/java/org/apache/commons/math3/FieldElement.java index 8a7533a..58af0db 100644 --- a/src/main/java/org/apache/commons/math3/FieldElement.java +++ b/src/main/java/org/apache/commons/math3/FieldElement.java @@ -31,7 +31,7 @@ public interface FieldElement<T> { /** Compute this + a. * @param a element to add * @return a new element representing this + a - * @throws NullArgumentException if {@code addend} is {@code null}. + * @throws NullArgumentException if {@code a} is {@code null}. */ T add(T a) throws NullArgumentException;