projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3a27d2
)
Fix typo in py-type.c docstring
author
Tom Tromey
<tromey@adacore.com>
Fri, 21 Jul 2023 16:33:07 +0000
(10:33 -0600)
committer
Tom Tromey
<tromey@adacore.com>
Fri, 21 Jul 2023 16:33:07 +0000
(10:33 -0600)
I noticed that a doc string py-type.c says "an signed".
This patch corrects it to "a signed".
gdb/python/py-type.c
patch
|
blob
|
history
diff --git
a/gdb/python/py-type.c
b/gdb/python/py-type.c
index b4d1e230b3b1ea6ba25aeb1f51977cf319c3e331..b60875c792ed3b486bdf18948b4ff97420fdfd30 100644
(file)
--- 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 a
n
signed type?", nullptr },
+ "Is this a signed type?", nullptr },
{ NULL }
};