diff --git a/agb/src/display/affine.rs b/agb/src/display/affine.rs index 86c95e99..5ee173b4 100644 --- a/agb/src/display/affine.rs +++ b/agb/src/display/affine.rs @@ -91,7 +91,7 @@ type AffineMatrixElement = Num; /// An affine matrix stored in a way that is efficient for the GBA to perform /// operations on. This implements multiplication. /// -/// ``` +/// ```txt /// a b x /// c d y /// 0 0 0 @@ -326,7 +326,7 @@ impl From for AffineMatrix { #[repr(C, packed(4))] /// An affine matrix that can be used in affine objects /// -/// ``` +/// ```txt /// a b /// c d /// ```