From d65983515f4dc9b4901c1b8290b7d8901914a31e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Alexandre=20Par=C3=A9?= <hericendre@live.com>
Date: Sat, 28 Oct 2017 13:23:58 -0400
Subject: [PATCH] Correcting word order of a comment in memory.cpp

---
 src/core/memory.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/memory.cpp b/src/core/memory.cpp
index 7f58be6de..4fc964575 100644
--- a/src/core/memory.cpp
+++ b/src/core/memory.cpp
@@ -393,7 +393,7 @@ void RasterizerMarkRegionCached(PAddr start, u32 size, int count_delta) {
             case PageType::RasterizerCachedMemory: {
                 u8* pointer = GetPointerFromVMA(vaddr & ~PAGE_MASK);
                 if (pointer == nullptr) {
-                    // It's possible that this function has called been while updating the pagetable
+                    // It's possible that this function has been called while updating the pagetable
                     // after unmapping a VMA. In that case the underlying VMA will no longer exist,
                     // and we should just leave the pagetable entry blank.
                     page_type = PageType::Unmapped;