From b42339ec9453a3091131f1b3fa43e05bf6a323f3 Mon Sep 17 00:00:00 2001 From: Wenping Guo Date: Wed, 30 Jan 2019 15:42:28 +0800 Subject: [PATCH] fix doc string of `lower_triangle` method --- src/base/edition.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/edition.rs b/src/base/edition.rs index 8b6581e8..d1493847 100644 --- a/src/base/edition.rs +++ b/src/base/edition.rs @@ -23,7 +23,7 @@ impl> Matrix { res } - /// Extracts the upper triangular part of this matrix (including the diagonal). + /// Extracts the lower triangular part of this matrix (including the diagonal). #[inline] pub fn lower_triangle(&self) -> MatrixMN where DefaultAllocator: Allocator {