From: Tankut Baris Aktemur Date: Tue, 17 Dec 2024 07:48:04 +0000 (+0100) Subject: gdbsupport: fix a typo in a comment in common-regcache.h X-Git-Tag: gdb-16-branchpoint~71 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ac965d0fc5f6fc93fc0595a870a66a330f456bc6;p=thirdparty%2Fbinutils-gdb.git gdbsupport: fix a typo in a comment in common-regcache.h Fix a typo. Approved-By: Simon Marchi --- diff --git a/gdbsupport/common-regcache.h b/gdbsupport/common-regcache.h index ef37d61b40a..87ffc22a5e6 100644 --- a/gdbsupport/common-regcache.h +++ b/gdbsupport/common-regcache.h @@ -35,10 +35,10 @@ enum register_status : signed char /* The register value is unavailable. E.g., we're inspecting a traceframe, and this register wasn't collected. Note that this - is different a different "unavailable" from saying the register - does not exist in the target's architecture --- in that case, - the target should have given us a target description that does - not include the register in the first place. */ + "unavailable" is different from saying the register does not + exist in the target's architecture --- in that case, the target + should have given us a target description that does not include + the register in the first place. */ REG_UNAVAILABLE = -1 };