Fixed javadoc.

Thanks to Ole Ersoy for the patch.

Github: closes #19
This commit is contained in:
Luc Maisonobe 2015-12-15 19:44:38 +01:00
parent a6a4bd1fc9
commit abb2057959
1 changed files with 1 additions and 1 deletions

View File

@ -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;