Fix grammar.
authorMisha Brukman <brukman+llvm@gmail.com>
Fri, 6 Feb 2004 18:40:35 +0000 (18:40 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Fri, 6 Feb 2004 18:40:35 +0000 (18:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11153 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/DerivedTypes.h

index 05b065b8a1a99ba96c971fbdf89798586d118459..117a0b9423906e0be5510ceac8e970f6bce82607 100644 (file)
@@ -39,12 +39,11 @@ class DerivedType : public Type, public AbstractTypeUser {
   // AbstractTypeUsers - Implement a list of the users that need to be notified
   // if I am a type, and I get resolved into a more concrete type.
   //
-  ///// FIXME: kill mutable nonsense when Type's are not const
+  ///// FIXME: kill mutable nonsense when Types are not const
   mutable std::vector<AbstractTypeUser *> AbstractTypeUsers;
 
 protected:
-  DerivedType(PrimitiveID id) : Type("", id), RefCount(0) {
-  }
+  DerivedType(PrimitiveID id) : Type("", id), RefCount(0) {}
   ~DerivedType() {
     assert(AbstractTypeUsers.empty());
   }