diff --git a/rp2040-hal/src/sio.rs b/rp2040-hal/src/sio.rs index a2f769f..367c55d 100644 --- a/rp2040-hal/src/sio.rs +++ b/rp2040-hal/src/sio.rs @@ -43,10 +43,10 @@ pub struct HwDivider { /// Result of divide/modulo operation pub struct DivResult { - /// The remainder of divide/modulo operation - pub remainder: T, /// The quotient of divide/modulo operation pub quotient: T, + /// The remainder of divide/modulo operation + pub remainder: T, } /// Struct containing ownership markers for managing ownership of the SIO registers.