[pushed] Fix typo in py-type.c docstring

Message ID 20230721163402.1094759-1-tromey@adacore.com
State New
Headers
Series [pushed] Fix typo in py-type.c docstring |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gdb_build--master-arm warning Patch failed to apply
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 warning Patch failed to apply
linaro-tcwg-bot/tcwg_gdb_check--master-aarch64 warning Patch failed to apply
linaro-tcwg-bot/tcwg_gdb_check--master-arm warning Patch failed to apply

Commit Message

Tom Tromey July 21, 2023, 4:34 p.m. UTC
  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(-)
  

Patch

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