We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f38d7a9 commit 3dadb8cCopy full SHA for 3dadb8c
lib/std/math/big/int.zig
@@ -2844,8 +2844,8 @@ pub const Managed = struct {
2844
return a.toConst().orderAbs(b.toConst());
2845
}
2846
2847
- /// Returns math.Order.lt, math.Order.eq, math.Order.gt if a < b, a == b or a
2848
- /// > b respectively.
+ /// Returns math.Order.lt, math.Order.eq, math.Order.gt if a < b, a == b or a > b
+ /// respectively.
2849
pub fn order(a: Managed, b: Managed) math.Order {
2850
return a.toConst().order(b.toConst());
2851
0 commit comments