autodocs: reflow comment to prevent it from been put in blockquote

This commit is contained in:
andrewkraevskii 2025-01-18 05:45:28 +03:00 committed by Alex Rønne Petersen
parent f38d7a92cc
commit 3dadb8c4c9

View file

@ -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());
}