Fix grammar in comments.
authorEric Christopher <echristo@gmail.com>
Mon, 18 May 2015 22:12:41 +0000 (22:12 +0000)
committerEric Christopher <echristo@gmail.com>
Mon, 18 May 2015 22:12:41 +0000 (22:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237622 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/Constants.h

index a16bf1ff09215b4fa6190ba23972fb85f164c77f..152d9f5e4268a9cf7321f3a1e47f5c5a56061a70 100644 (file)
@@ -12,7 +12,7 @@
 /// which represent the different flavors of constant values that live in LLVM.
 /// Note that Constants are immutable (once created they never change) and are
 /// fully shared by structural equivalence.  This means that two structurally
-/// equivalent constants will always have the same address.  Constant's are
+/// equivalent constants will always have the same address.  Constants are
 /// created on demand as needed and never deleted: thus clients don't have to
 /// worry about the lifetime of the objects.
 //
@@ -1055,7 +1055,7 @@ public:
                            bool OnlyIfReduced = false);
 
   /// Getelementptr form.  Value* is only accepted for convenience;
-  /// all elements must be Constant's.
+  /// all elements must be Constants.
   ///
   /// \param OnlyIfReducedTy see \a getWithOperands() docs.
   static Constant *getGetElementPtr(Type *Ty, Constant *C,