OSDN Git Service

Fixed spelling mistake. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 8 Jan 2018 17:16:59 +0000 (17:16 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 8 Jan 2018 17:16:59 +0000 (17:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@322009 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/APInt.h

index c81363c..118c62e 100644 (file)
@@ -1279,7 +1279,7 @@ public:
   /// \returns true if *this >= RHS when considered unsigned.
   bool uge(uint64_t RHS) const { return !ult(RHS); }
 
-  /// \brief Signed greather or equal comparison
+  /// \brief Signed greater or equal comparison
   ///
   /// Regards both *this and RHS as signed quantities and compares them for
   /// validity of the greater-or-equal relationship.