From aa33a4691918fafe4cb7c7b834fc0fded09797d1 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Tue, 17 Oct 2023 23:45:08 +0100 Subject: [PATCH] Remove trailing spaces --- agb/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agb/src/lib.rs b/agb/src/lib.rs index 7cbe83d6..a10992f6 100644 --- a/agb/src/lib.rs +++ b/agb/src/lib.rs @@ -459,7 +459,8 @@ mod test { let address = iwram_ptr as usize; assert!( (0x0200_0000..0x0204_0000).contains(&address), - "implicit data storage is expected to be in ewram, which is between 0x0300_0000 and 0x0300_8000, but was actually found to be at {address:#010X}" ); + "implicit data storage is expected to be in ewram, which is between 0x0300_0000 and 0x0300_8000, but was actually found to be at {address:#010X}" + ); let c = iwram_ptr.read_volatile(); assert_eq!(c, 9, "expected content to be 9"); iwram_ptr.write_volatile(u32::MAX);