[llvm] 5c1e148 - [JITLink] Fix typo in comment. NFC

via llvm-commits llvm-commits at lists.llvm.org
Sat Nov 26 04:58:05 PST 2022


Author: wanglei
Date: 2022-11-26T20:55:49+08:00
New Revision: 5c1e14885f8596ca16f9b33cd4593022f25229e8

URL: https://github.com/llvm/llvm-project/commit/5c1e14885f8596ca16f9b33cd4593022f25229e8
DIFF: https://github.com/llvm/llvm-project/commit/5c1e14885f8596ca16f9b33cd4593022f25229e8.diff

LOG: [JITLink] Fix typo in comment. NFC

Added: 
    

Modified: 
    llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h b/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
index f6e7706a7e9e3..a356b813150f3 100644
--- a/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
+++ b/llvm/include/llvm/ExecutionEngine/JITLink/JITLink.h
@@ -530,7 +530,7 @@ class Symbol {
     return *Base;
   }
 
-  /// Return the addressable that thsi symbol points to.
+  /// Return the addressable that this symbol points to.
   const Addressable &getAddressable() const {
     assert(Base && "Cannot get underlying addressable for null symbol");
     return *Base;


        


More information about the llvm-commits mailing list