From 4b3a157513bd7fcbc0402d2f4341e66562db0ab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ho=C3=A0ng=20Xu=C3=A2n=20Ph=C3=BA?= Date: Mon, 28 May 2018 23:00:35 -0400 Subject: [PATCH] Fix mismatching description for is_empty --- src/base/properties.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/properties.rs b/src/base/properties.rs index 0033ef69..266d22b0 100644 --- a/src/base/properties.rs +++ b/src/base/properties.rs @@ -10,7 +10,7 @@ use base::storage::Storage; use base::{DefaultAllocator, Matrix, Scalar, SquareMatrix}; impl> Matrix { - /// Indicates if this is a square matrix. + /// Indicates if this is an empty matrix. #[inline] pub fn is_empty(&self) -> bool { let (nrows, ncols) = self.shape();