[1/5,gdbsupport] Fix a typo in common-debug.h

Message ID 20250321144251.23618-2-tdevries@suse.de
State Committed
Headers
Series Add codespell hook |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 success Build passed
linaro-tcwg-bot/tcwg_gdb_build--master-arm success Build passed
linaro-tcwg-bot/tcwg_gdb_check--master-arm success Test passed
linaro-tcwg-bot/tcwg_gdb_check--master-aarch64 success Test passed

Commit Message

Tom de Vries March 21, 2025, 2:42 p.m. UTC
  Fix a typo:
...
$ codespell --config gdbsupport/setup.cfg gdbsupport/common-debug.h
gdbsupport/common-debug.h:109: re-used ==> reused
...
---
 gdbsupport/common-debug.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gdbsupport/common-debug.h b/gdbsupport/common-debug.h
index 6c793dc33d4..f7c8d8190af 100644
--- a/gdbsupport/common-debug.h
+++ b/gdbsupport/common-debug.h
@@ -106,7 +106,7 @@  struct scoped_debug_start_end
 
      If the FMT format string is non-nullptr, then a `: ` is appended to the
      messages, followed by the rendering of that format string with ARGS.
-     The format string is rendered during construction and is re-used as is
+     The format string is rendered during construction and is reused as is
      for the message on exit.  */
 
   scoped_debug_start_end (PT &debug_enabled, const char *module,