From 7d0ad0d497154d7eadc6b58bb89ca9781e4342f8 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Wed, 28 Aug 2024 12:12:44 +0100 Subject: [PATCH] State that this is text --- agb/src/display/affine.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 /// ```