Skip to content

Commit d839a59

Browse files
authored
Merge pull request #21 from RustLangES/fix-typo
fix community name
2 parents 8693562 + be0ef4e commit d839a59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/os/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[dependencies]
77
bootloader_api = "0.11.8"
88
heapless = "0.8.0"
9-
noto-sans-mono-bitmap = "0.3.0"
9+
noto-sans-mono-bitmap = { version = "0.3.0", features = ["unicode-latin-1-supplement"] }
1010
memsos_core = { path = "../core" }

kernel/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ fn kernel_main(boot_info: &'static mut BootInfo) -> ! {
137137
api_version.version_patch()
138138
),
139139
&text!((0, 0), "Mem regions: {:?}", regions),
140-
&text!("Made with love by Rust Lang Es")
140+
&text!("Made with love by RustLangEs (Rust Lang en Español)")
141141
);
142142

143143
let mut test_result = TestResult::default();

0 commit comments

Comments
 (0)