From 9afdabd8cb2a6ad6f52879ff51b2dc11e6623c55 Mon Sep 17 00:00:00 2001 From: zyc <18611145971@163.com> Date: Fri, 10 May 2024 15:28:59 +0800 Subject: [PATCH] fix inconsistency --- src/algorithms/gcd/matrix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms/gcd/matrix.rs b/src/algorithms/gcd/matrix.rs index 832e3973..b2138f5a 100644 --- a/src/algorithms/gcd/matrix.rs +++ b/src/algorithms/gcd/matrix.rs @@ -120,7 +120,7 @@ impl Matrix { /// /// # Panics /// - /// Panics if `r1 < r0`. + /// Panics if `r0 < r1`. // OPT: Would this be faster using extended binary gcd? // See #[inline]