aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/memory
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2024-12-17 09:36:31 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2024-12-17 09:36:31 +0000
commit3d488e53a1d15fcc01a7b1d23b9585ca7a724864 (patch)
treee3e410f399c3eead444f2a242a19448571fd979a /arch/x86_64/src/memory
parent568d0fd25f4ab12b183e230210d68252031bfa18 (diff)
downloadteachos-3d488e53a1d15fcc01a7b1d23b9585ca7a724864.tar.xz
teachos-3d488e53a1d15fcc01a7b1d23b9585ca7a724864.zip
Fix typo
Diffstat (limited to 'arch/x86_64/src/memory')
-rw-r--r--arch/x86_64/src/memory/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/src/memory/main.cpp b/arch/x86_64/src/memory/main.cpp
index 5290061..b978319 100644
--- a/arch/x86_64/src/memory/main.cpp
+++ b/arch/x86_64/src/memory/main.cpp
@@ -43,11 +43,11 @@ namespace teachos::arch::memory
paging::kernel_mapper kernel(allocator, memory_information);
auto & active_table = kernel.remap_kernel();
- video::vga::text::write("Kernel remapping successfull", video::vga::text::common_attributes::green_on_black);
+ video::vga::text::write("Kernel remapping successful", video::vga::text::common_attributes::green_on_black);
video::vga::text::newline();
remap_heap(allocator, active_table);
- video::vga::text::write("Heap remapping successfull", video::vga::text::common_attributes::green_on_black);
+ video::vga::text::write("Heap remapping successful", video::vga::text::common_attributes::green_on_black);
video::vga::text::newline();
}
} // namespace teachos::arch::memory