[llvm] Fixed typo: commnads -> commands (PR #168395)

Daniel Wedzicha via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 17 08:14:21 PST 2025


https://github.com/boredhuman created https://github.com/llvm/llvm-project/pull/168395

This is a duplicate of https://github.com/llvm/llvm-project/pull/168302
I accidently closed that pr when I clicked resync fork in github, which I clicked because I made too shallow of a clone, which after force pushing my commit with email address, caused the pull request to become completely busted.

>From cdea9ba0ce2cd03e4e1c652734da91f8348f9e44 Mon Sep 17 00:00:00 2001
From: Daniel <danielgitmail at proton.me>
Date: Mon, 17 Nov 2025 12:02:04 -0400
Subject: [PATCH] Fixed typo: commnads -> commands

---
 llvm/tools/llvm-objdump/OtoolOpts.td | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/tools/llvm-objdump/OtoolOpts.td b/llvm/tools/llvm-objdump/OtoolOpts.td
index dc7a5b445cffe..706d9e0182f58 100644
--- a/llvm/tools/llvm-objdump/OtoolOpts.td
+++ b/llvm/tools/llvm-objdump/OtoolOpts.td
@@ -14,7 +14,7 @@ def G : Flag<["-"], "G">, HelpText<"print data-in-code table">;
 def h : Flag<["-"], "h">, HelpText<"print mach header">;
 def I : Flag<["-"], "I">, HelpText<"print indirect symbol table">;
 def j : Flag<["-"], "j">, HelpText<"print opcode bytes">;
-def l : Flag<["-"], "l">, HelpText<"print load commnads">;
+def l : Flag<["-"], "l">, HelpText<"print load commands">;
 def L : Flag<["-"], "L">, HelpText<"print used shared libraries">;
 def mcpu_EQ : Joined<["-"], "mcpu=">, HelpText<"select cpu for disassembly">;
 def o : Flag<["-"], "o">, HelpText<"print Objective-C segment">;



More information about the llvm-commits mailing list