[llvm] 1718fe4 - [llvm-objcopy] Fix some comment typos

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 17 10:43:44 PST 2021


Author: Nico Weber
Date: 2021-11-17T13:43:30-05:00
New Revision: 1718fe4643925f4c9788ccb3f7c5779cae394a2a

URL: https://github.com/llvm/llvm-project/commit/1718fe4643925f4c9788ccb3f7c5779cae394a2a
DIFF: https://github.com/llvm/llvm-project/commit/1718fe4643925f4c9788ccb3f7c5779cae394a2a.diff

LOG: [llvm-objcopy] Fix some comment typos

Added: 
    

Modified: 
    llvm/tools/llvm-objcopy/MachO/Object.h

Removed: 
    


################################################################################
diff  --git a/llvm/tools/llvm-objcopy/MachO/Object.h b/llvm/tools/llvm-objcopy/MachO/Object.h
index 847b8baf126b..13aaf42634b0 100644
--- a/llvm/tools/llvm-objcopy/MachO/Object.h
+++ b/llvm/tools/llvm-objcopy/MachO/Object.h
@@ -326,17 +326,17 @@ struct Object {
   Optional<size_t> SymTabCommandIndex;
   /// The index of LC_DYLD_INFO or LC_DYLD_INFO_ONLY load command if present.
   Optional<size_t> DyLdInfoCommandIndex;
-  /// The index LC_DYSYMTAB load comamnd if present.
+  /// The index LC_DYSYMTAB load command if present.
   Optional<size_t> DySymTabCommandIndex;
-  /// The index LC_DATA_IN_CODE load comamnd if present.
+  /// The index LC_DATA_IN_CODE load command if present.
   Optional<size_t> DataInCodeCommandIndex;
-  /// The index of LC_LINKER_OPTIMIZATIN_HINT load comamnd if present.
+  /// The index of LC_LINKER_OPTIMIZATIN_HINT load command if present.
   Optional<size_t> LinkerOptimizationHintCommandIndex;
-  /// The index LC_FUNCTION_STARTS load comamnd if present.
+  /// The index LC_FUNCTION_STARTS load command if present.
   Optional<size_t> FunctionStartsCommandIndex;
-  /// The index LC_DYLD_CHAINED_FIXUPS load comamnd if present.
+  /// The index LC_DYLD_CHAINED_FIXUPS load command if present.
   Optional<size_t> ChainedFixupsCommandIndex;
-  /// The index LC_DYLD_EXPORTS_TRIE load comamnd if present.
+  /// The index LC_DYLD_EXPORTS_TRIE load command if present.
   Optional<size_t> ExportsTrieCommandIndex;
   /// The index of the LC_SEGMENT or LC_SEGMENT_64 load command
   /// corresponding to the __TEXT segment.


        


More information about the llvm-commits mailing list