Fix grammar.
[oota-llvm.git] / 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());
   }