aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2023-07-21 10:33:07 -0600
committerTom Tromey <tromey@adacore.com>2023-07-21 10:33:07 -0600
commit8d80d2405354955464b35247978c1ca5f3c36ce7 (patch)
tree90bf93482b5293535d1b8fecdf231d5ff749a694 /gdb/python
parentb3a27d2f97aa3e21237036e50b54bbe94d19d048 (diff)
downloadgdb-8d80d2405354955464b35247978c1ca5f3c36ce7.zip
gdb-8d80d2405354955464b35247978c1ca5f3c36ce7.tar.gz
gdb-8d80d2405354955464b35247978c1ca5f3c36ce7.tar.bz2
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".
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/py-type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-type.c b/gdb/python/py-type.c
index b4d1e23..b60875c 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 }
};