[lldb] Correct typo in memory read error
authorDavid Spickett <david.spickett@linaro.org>
Wed, 17 Mar 2021 09:43:06 +0000 (09:43 +0000)
committerDavid Spickett <david.spickett@linaro.org>
Wed, 17 Mar 2021 10:38:31 +0000 (10:38 +0000)
Reviewed By: teemperor

Differential Revision: https://reviews.llvm.org/D98770

lldb/source/Commands/CommandObjectMemory.cpp

index 2aac492..3e7f67f 100644 (file)
@@ -608,7 +608,7 @@ protected:
       } else if (end_addr <= addr) {
         result.AppendErrorWithFormat(
             "end address (0x%" PRIx64
-            ") must be greater that the start address (0x%" PRIx64 ").\n",
+            ") must be greater than the start address (0x%" PRIx64 ").\n",
             end_addr, addr);
         result.SetStatus(eReturnStatusFailed);
         return false;