diff options
| author | Dmitry V. Levin <[email protected]> | 2020-12-12 04:27:37 +0300 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2020-12-12 14:59:17 +0100 |
| commit | adbf4bafc2398e90a90a4e98b4ce2e05614c617b (patch) | |
| tree | d6e89d20faba278cb50fd1e22f3512e3fd3d329e /src/strip.c | |
| parent | b43d1b48c6add5f1f92a11ff505eb1e807c5e965 (diff) | |
src: fix spelling typos in argp help text and error diagnostics
Since all these help text strings are marked for translation, apply the fixes
to translation strings as well, this helps to avoid translations becoming fuzzy.
lenght -> length
occured -> occurred
endianess -> endianness
reversable -> reversible
Signed-off-by: Dmitry V. Levin <[email protected]>
Diffstat (limited to 'src/strip.c')
| -rw-r--r-- | src/strip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strip.c b/src/strip.c index 48792a70..9dbdf5d9 100644 --- a/src/strip.c +++ b/src/strip.c @@ -82,9 +82,9 @@ static const struct argp_option options[] = { "preserve-dates", 'p', NULL, 0, N_("Copy modified/access timestamps to the output"), 0 }, { "reloc-debug-sections", OPT_RELOC_DEBUG, NULL, 0, - N_("Resolve all trivial relocations between debug sections if the removed sections are placed in a debug file (only relevant for ET_REL files, operation is not reversable, needs -f)"), 0 }, + N_("Resolve all trivial relocations between debug sections if the removed sections are placed in a debug file (only relevant for ET_REL files, operation is not reversible, needs -f)"), 0 }, { "reloc-debug-sections-only", OPT_RELOC_DEBUG_ONLY, NULL, 0, - N_("Similar to --reloc-debug-sections, but resolve all trivial relocations between debug sections in place. No other stripping is performed (operation is not reversable, incompatible with -f, -g, --remove-comment and --remove-section)"), 0 }, + N_("Similar to --reloc-debug-sections, but resolve all trivial relocations between debug sections in place. No other stripping is performed (operation is not reversible, incompatible with -f, -g, --remove-comment and --remove-section)"), 0 }, { "remove-comment", OPT_REMOVE_COMMENT, NULL, 0, N_("Remove .comment section"), 0 }, { "remove-section", 'R', "SECTION", 0, N_("Remove the named section. SECTION is an extended wildcard pattern. May be given more than once. Only non-allocated sections can be removed."), 0 }, |
