State that this is text

This commit is contained in:
Gwilym Inzani 2024-08-28 12:12:44 +01:00
parent 2614fd1af0
commit 7d0ad0d497

View file

@ -91,7 +91,7 @@ type AffineMatrixElement = Num<i32, 8>;
/// 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<AffineMatrixBackground> for AffineMatrix {
#[repr(C, packed(4))]
/// An affine matrix that can be used in affine objects
///
/// ```
/// ```txt
/// a b
/// c d
/// ```