From: Tom Tromey Date: Fri, 21 Jul 2023 16:33:07 +0000 (-0600) Subject: Fix typo in py-type.c docstring X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d80d2405354955464b35247978c1ca5f3c36ce7;p=binutils-gdb.git Fix typo in py-type.c docstring I noticed that a doc string py-type.c says "an signed". This patch corrects it to "a signed". --- diff --git a/gdb/python/py-type.c b/gdb/python/py-type.c index b4d1e230b3b..b60875c792e 100644 --- a/gdb/python/py-type.c +++ b/gdb/python/py-type.c @@ -1524,7 +1524,7 @@ static gdb_PyGetSetDef type_object_getset[] = { "is_scalar", typy_is_scalar, nullptr, "Is this a scalar type?", nullptr }, { "is_signed", typy_is_signed, nullptr, - "Is this an signed type?", nullptr }, + "Is this a signed type?", nullptr }, { NULL } };