You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2019/10/23 13:41:24 UTC

[commons-numbers] 02/03: Javadoc.

This is an automated email from the ASF dual-hosted git repository.

erans pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit 704e3557f1e1d45ee48bcf1f6e6a76e241c59a1c
Author: Gilles Sadowski <gi...@harfang.homelinux.org>
AuthorDate: Wed Oct 23 13:10:06 2019 +0200

    Javadoc.
---
 .../main/java/org/apache/commons/numbers/field/FieldSquareMatrix.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/commons-numbers-field/src/main/java/org/apache/commons/numbers/field/FieldSquareMatrix.java b/commons-numbers-field/src/main/java/org/apache/commons/numbers/field/FieldSquareMatrix.java
index dc6b129..8f83088 100644
--- a/commons-numbers-field/src/main/java/org/apache/commons/numbers/field/FieldSquareMatrix.java
+++ b/commons-numbers-field/src/main/java/org/apache/commons/numbers/field/FieldSquareMatrix.java
@@ -207,7 +207,7 @@ public class FieldSquareMatrix<T> {
     /**
      * Multiplication.
      *
-     * @param factor Matrix to multiply with.
+     * @param other Matrix to multiply with.
      * @return a new instance with the result of the multiplication.
      */
     public FieldSquareMatrix<T> multiply(FieldSquareMatrix<T> other) {
@@ -284,7 +284,7 @@ public class FieldSquareMatrix<T> {
     /**
      * Check that the given matrix has the same dimensions.
      *
-     * @param factor Matrix to check.
+     * @param other Matrix to check.
      * @throws IllegalArgumentException if the dimensions do not match.
      */
     private void checkDimension(FieldSquareMatrix<T> other) {