[llvm] 2204a7b - [dsymutil][NFC] Fix typo in help message
Ellis Hoag via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 9 10:55:23 PST 2021
Author: Ellis Hoag
Date: 2021-12-09T10:55:13-08:00
New Revision: 2204a7bc994f0c53149f120999b03cd06c27477c
URL: https://github.com/llvm/llvm-project/commit/2204a7bc994f0c53149f120999b03cd06c27477c
DIFF: https://github.com/llvm/llvm-project/commit/2204a7bc994f0c53149f120999b03cd06c27477c.diff
LOG: [dsymutil][NFC] Fix typo in help message
Just a simple typo fix that allows me to test landing a commit now that
I have commit access.
Reviewed By: xgupta
Differential Revision: https://reviews.llvm.org/D115414
Added:
Modified:
llvm/docs/CommandGuide/dsymutil.rst
llvm/tools/dsymutil/Options.td
Removed:
################################################################################
diff --git a/llvm/docs/CommandGuide/dsymutil.rst b/llvm/docs/CommandGuide/dsymutil.rst
index 74a72f6363445..22cab9af5b23c 100644
--- a/llvm/docs/CommandGuide/dsymutil.rst
+++ b/llvm/docs/CommandGuide/dsymutil.rst
@@ -35,7 +35,7 @@ OPTIONS
.. option:: --dump-debug-map
Dump the *executable*'s debug-map (the list of the object files containing the
- debug information) in YAML format and exit. Not DWARF link will take place.
+ debug information) in YAML format and exit. No DWARF link will take place.
.. option:: --flat, -f
diff --git a/llvm/tools/dsymutil/Options.td b/llvm/tools/dsymutil/Options.td
index 67eac56c9abd2..ff11298f4ae94 100644
--- a/llvm/tools/dsymutil/Options.td
+++ b/llvm/tools/dsymutil/Options.td
@@ -54,7 +54,7 @@ def no_odr: F<"no-odr">,
Group<grp_general>;
def dump_debug_map: F<"dump-debug-map">,
- HelpText<"Parse and dump the debug map to standard output. Not DWARF link will take place.">,
+ HelpText<"Parse and dump the debug map to standard output. No DWARF link will take place.">,
Group<grp_general>;
def yaml_input: Flag<["-", "--"], "y">,
More information about the llvm-commits
mailing list