aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64
diff options
context:
space:
mode:
authorMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-20 06:26:58 +0000
committerMatteo Gmür <matteo.gmuer1@ost.ch>2024-10-20 06:26:58 +0000
commit7ca089125b8c5e55dd584648cd33612883cc004d (patch)
tree4a00b49e67da36212dac649529fcd46b049bec67 /arch/x86_64
parent779154223c6d220bbfe56b5b14e5fafcccb55781 (diff)
downloadteachos-7ca089125b8c5e55dd584648cd33612883cc004d.tar.xz
teachos-7ca089125b8c5e55dd584648cd33612883cc004d.zip
Fix typo in file name
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/include/arch/memory/multiboot/elf_symbols_section.hpp (renamed from arch/x86_64/include/arch/memory/multiboot/elf_sybols_section.hpp)0
-rw-r--r--arch/x86_64/include/arch/memory/multiboot/reader.hpp2
-rw-r--r--arch/x86_64/include/arch/memory/paging/page_table.hpp6
-rw-r--r--arch/x86_64/src/memory/multiboot/elf_symbols_section.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86_64/include/arch/memory/multiboot/elf_sybols_section.hpp b/arch/x86_64/include/arch/memory/multiboot/elf_symbols_section.hpp
index 88d211e..88d211e 100644
--- a/arch/x86_64/include/arch/memory/multiboot/elf_sybols_section.hpp
+++ b/arch/x86_64/include/arch/memory/multiboot/elf_symbols_section.hpp
diff --git a/arch/x86_64/include/arch/memory/multiboot/reader.hpp b/arch/x86_64/include/arch/memory/multiboot/reader.hpp
index 14086a7..2f72980 100644
--- a/arch/x86_64/include/arch/memory/multiboot/reader.hpp
+++ b/arch/x86_64/include/arch/memory/multiboot/reader.hpp
@@ -1,7 +1,7 @@
#ifndef TEACHOS_ARCH_X86_64_MEMORY_MULTIBOOT_READER_HPP
#define TEACHOS_ARCH_X86_64_MEMORY_MULTIBOOT_READER_HPP
-#include "elf_sybols_section.hpp"
+#include "elf_symbols_section.hpp"
#include "memory_map.hpp"
#include <cstdint>
diff --git a/arch/x86_64/include/arch/memory/paging/page_table.hpp b/arch/x86_64/include/arch/memory/paging/page_table.hpp
index 32e49e5..da63d8c 100644
--- a/arch/x86_64/include/arch/memory/paging/page_table.hpp
+++ b/arch/x86_64/include/arch/memory/paging/page_table.hpp
@@ -48,9 +48,9 @@ namespace teachos::arch::memory::paging
auto zero_entries() -> void;
/**
- * @brief Gets the complete next page table level from the given page table index. Meaning we use an index into a
- * Level 4 page table to get the according Level 3 page table. When using this on an a level 1 page table it will
- * cause an assertion.
+ * @brief Turn this page table into the next page table level from the given page table index. Meaning we
+ * use an index into a Level 4 page table to get the according Level 3 page table. When using this on an a level 1
+ * page table it will cause an assertion.
*
* @param table_index Index of this page table in the page table one level higher.
*/
diff --git a/arch/x86_64/src/memory/multiboot/elf_symbols_section.cpp b/arch/x86_64/src/memory/multiboot/elf_symbols_section.cpp
index 78ab952..953a57d 100644
--- a/arch/x86_64/src/memory/multiboot/elf_symbols_section.cpp
+++ b/arch/x86_64/src/memory/multiboot/elf_symbols_section.cpp
@@ -1,4 +1,4 @@
-#include "arch/memory/multiboot/elf_sybols_section.hpp"
+#include "arch/memory/multiboot/elf_symbols_section.hpp"
namespace teachos::arch::memory::multiboot
{