diff options
author | Tom de Vries <tdevries@suse.de> | 2025-03-20 16:55:59 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2025-03-20 16:55:59 +0100 |
commit | 4226ebed4193f35c42ee53bb8936398f732ed7d6 (patch) | |
tree | 8805f5546adcd250f14159ec44f0fa4f4dbe2665 | |
parent | 37c6eb16164a2345484777bb5affab45ab502f6f (diff) | |
download | binutils-4226ebed4193f35c42ee53bb8936398f732ed7d6.zip binutils-4226ebed4193f35c42ee53bb8936398f732ed7d6.tar.gz binutils-4226ebed4193f35c42ee53bb8936398f732ed7d6.tar.bz2 |
[gdbsupport] Fix typo in common-inferior.h
Fix the following typo:
...
$ codespell --config gdbsupport/setup.cfg gdbsupport/
gdbsupport/common-inferior.h:57: elemets ==> elements
...
-rw-r--r-- | gdbsupport/common-inferior.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbsupport/common-inferior.h b/gdbsupport/common-inferior.h index 3e8ec10..a277e1b 100644 --- a/gdbsupport/common-inferior.h +++ b/gdbsupport/common-inferior.h @@ -54,7 +54,7 @@ extern bool startup_with_shell; /* Combine elements of ARGV into a single string, placing a single whitespace character between each element. When ESCAPE_SHELL_CHAR is - true then any special shell characters in elemets of ARGV will be + true then any special shell characters in elements of ARGV will be escaped. When ESCAPE_SHELL_CHAR is false only the characters that GDB sees as special (quotes and whitespace) are escaped. */ extern std::string |