From 8d80d2405354955464b35247978c1ca5f3c36ce7 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 21 Jul 2023 10:33:07 -0600 Subject: [PATCH] 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". --- gdb/python/py-type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }; -- 2.30.2