From 8c601c44884c3de5848635798a065dcadf20d0e1 Mon Sep 17 00:00:00 2001 From: Les De Ridder Date: Tue, 16 Jun 2020 22:03:49 +0200 Subject: [PATCH] Fix typos (#787) --- pwndbg/abi.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pwndbg/abi.py b/pwndbg/abi.py index af822478d..93fdc60f9 100644 --- a/pwndbg/abi.py +++ b/pwndbg/abi.py @@ -145,10 +145,10 @@ def update(): if not linux: msg = M.warn( - "The bare metal debugging is enabled since the gdb's osabi is '%s' which is not 'GNU/Linux'.\n" + "The bare metal debugging is enabled since gdb's osabi is '%s' which is not 'GNU/Linux'.\n" "Ex. the page resolving and memory de-referencing ONLY works on known pages.\n" - "This option is based ib gdb client compile arguments (by default) and will be corrected if you load an ELF which has the '.note.ABI-tag' section.\n" - "If you are debuging a program that runs on Linux ABI, please select the correct gdb client." + "This option is based on gdb client compile arguments (by default) and will be corrected if you load an ELF with a '.note.ABI-tag' section.\n" + "If you are debugging a program that runs on the Linux ABI, please select the correct gdb client." % abi ) print(msg)