From 3d488e53a1d15fcc01a7b1d23b9585ca7a724864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matteo=20Gm=C3=BCr?= Date: Tue, 17 Dec 2024 09:36:31 +0000 Subject: Fix typo --- arch/x86_64/src/kernel/main.cpp | 2 +- arch/x86_64/src/memory/main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'arch/x86_64/src') diff --git a/arch/x86_64/src/kernel/main.cpp b/arch/x86_64/src/kernel/main.cpp index a8cdc3a..681f960 100644 --- a/arch/x86_64/src/kernel/main.cpp +++ b/arch/x86_64/src/kernel/main.cpp @@ -37,7 +37,7 @@ namespace teachos::arch::kernel auto test8 = memory::multiboot::read_multiboot2(); if (test6 && test7 && test8.kernel_end) { - video::vga::text::write("Heap test successfull", video::vga::text::common_attributes::green_on_black); + video::vga::text::write("Heap test successful", video::vga::text::common_attributes::green_on_black); } test2->kernel_end = 2000; test2->kernel_start = 1000; 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 -- cgit v1.2.3