From afacc0e8de32f8a77316cf48abef222b7f4d061e Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 16 Feb 2023 02:29:19 +0200 Subject: [PATCH] Wrong API doc --- include/memory.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/memory.hpp b/include/memory.hpp index 6be83740..d94fea14 100644 --- a/include/memory.hpp +++ b/include/memory.hpp @@ -534,12 +534,12 @@ namespace Memory }; /** - * @brief Check if page is present + * @brief Check if page has the specified flag. * * @param VirtualAddress Virtual address of the page * @param Flag Flag to check - * @return true if page is present - * @return false if page is not present + * @return true if page has the specified flag. + * @return false if page is has the specified flag. */ bool Check(void *VirtualAddress, PTFlag Flag = PTFlag::P);