From d82dec93f2880c6bd49761815539a98b79cade1a Mon Sep 17 00:00:00 2001 From: JeonSeongBae Date: Mon, 27 Nov 2017 13:46:35 +0900 Subject: [PATCH] comment --- Data Structures/Matrix/Matrix.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Data Structures/Matrix/Matrix.java b/Data Structures/Matrix/Matrix.java index 275d38178..67fd51474 100644 --- a/Data Structures/Matrix/Matrix.java +++ b/Data Structures/Matrix/Matrix.java @@ -121,10 +121,10 @@ public class Matrix { } /** - * Returns this matrix scaled by a factor. That is, computes sA where s is a + * Returns this matrix divided by a factor. That is, computes sA where s is a * constant and A is a matrix (this object). * - * @param scalar : value to scale by + * @param scalar : value to divide by * @return A new matrix scaled by the scalar value */ public Matrix divide(int scalar) {