From 42d51adc6a58845821ee4ac99ad0b85decb27404 Mon Sep 17 00:00:00 2001
From: nhtyy <n@push0.dev>
Date: Fri, 20 Dec 2024 15:17:28 -0800
Subject: [PATCH] fix: confusing commment on `Curve` trait

---
 elliptic-curve/src/lib.rs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/elliptic-curve/src/lib.rs b/elliptic-curve/src/lib.rs
index ff5acd88f..b38360d56 100644
--- a/elliptic-curve/src/lib.rs
+++ b/elliptic-curve/src/lib.rs
@@ -191,8 +191,7 @@ pub trait Curve: 'static + Copy + Clone + Debug + Default + Eq + Ord + Send + Sy
         + FieldBytesEncoding<Self>
         + ShrAssign<usize>;
 
-    /// Order of this elliptic curve, i.e. number of elements in the scalar
-    /// field.
+    /// Order of the group formed by the elliptic cruves points.
     const ORDER: Self::Uint;
 }