diff options
author | Tom de Vries <tdevries@suse.de> | 2025-03-27 14:20:04 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2025-03-27 14:20:04 +0100 |
commit | c63274831c370ef62ea0753c87cdb0c35b4b1969 (patch) | |
tree | 72ad085306be0388501df862ec99ca099452905a | |
parent | 9882e2bca746acb186cfae8e67d30d91dc211647 (diff) | |
download | binutils-c63274831c370ef62ea0753c87cdb0c35b4b1969.zip binutils-c63274831c370ef62ea0753c87cdb0c35b4b1969.tar.gz binutils-c63274831c370ef62ea0753c87cdb0c35b4b1969.tar.bz2 |
[gdbsupport] Fix a typo in common-debug.h
Fix a typo:
...
$ codespell --config gdbsupport/setup.cfg gdbsupport/common-debug.h
gdbsupport/common-debug.h:109: re-used ==> reused
...
-rw-r--r-- | gdbsupport/common-debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbsupport/common-debug.h b/gdbsupport/common-debug.h index 6c793dc..f7c8d81 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, |