From d9dd716a82ca9e7808b7c09e566fb159b097175e Mon Sep 17 00:00:00 2001 From: Andrea Ciliberti Date: Sun, 13 Feb 2022 19:16:06 +0100 Subject: [PATCH] Typo in romfs example --- ctru-rs/examples/romfs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ctru-rs/examples/romfs.rs b/ctru-rs/examples/romfs.rs index 82afa24..ac8b443 100644 --- a/ctru-rs/examples/romfs.rs +++ b/ctru-rs/examples/romfs.rs @@ -11,9 +11,9 @@ fn main() { let _console = Console::init(gfx.top_screen.borrow_mut()); cfg_if::cfg_if! { - // Run this code ff RomFS are wanted and available + // Run this code if RomFS are wanted and available // This never fails as `ctru-rs` examples inherit all of the `ctru` features, - // but it might in a normal user application wasn't setup correctly + // but it might if a normal user application wasn't setup correctly if #[cfg(all(feature = "romfs", romfs_exists))] { let _romfs = ctru::romfs::RomFS::new().unwrap();