[llvm] r322009 - Fixed spelling mistake. NFCI.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 8 09:16:59 PST 2018


Author: rksimon
Date: Mon Jan  8 09:16:59 2018
New Revision: 322009

URL: http://llvm.org/viewvc/llvm-project?rev=322009&view=rev
Log:
Fixed spelling mistake. NFCI.

Modified:
    llvm/trunk/include/llvm/ADT/APInt.h

Modified: llvm/trunk/include/llvm/ADT/APInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APInt.h?rev=322009&r1=322008&r2=322009&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/APInt.h (original)
+++ llvm/trunk/include/llvm/ADT/APInt.h Mon Jan  8 09:16:59 2018
@@ -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.




More information about the llvm-commits mailing list