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".
This commit is contained in:
Tom Tromey
2023-07-21 10:33:07 -06:00
parent b3a27d2f97
commit 8d80d24053

View File

@ -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 }
};