[1/5,gdbsupport] Fix a typo in common-debug.h
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
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(-)
@@ -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,