Commit 3dadb8c4c9
Changed files (1)
lib
std
math
big
lib/std/math/big/int.zig
@@ -2844,8 +2844,8 @@ pub const Managed = struct {
return a.toConst().orderAbs(b.toConst());
}
- /// Returns math.Order.lt, math.Order.eq, math.Order.gt if a < b, a == b or a
- /// > b respectively.
+ /// Returns math.Order.lt, math.Order.eq, math.Order.gt if a < b, a == b or a > b
+ /// respectively.
pub fn order(a: Managed, b: Managed) math.Order {
return a.toConst().order(b.toConst());
}