fix and clean up a comment
authorGabor Greif <ggreif@gmail.com>
Sat, 21 Feb 2009 01:09:07 +0000 (01:09 +0000)
committerGabor Greif <ggreif@gmail.com>
Sat, 21 Feb 2009 01:09:07 +0000 (01:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65212 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/User.h

index e25d19b563fe92f571986ff0c83e0eefe190856a..bb1a862c86070650af3e97bf1f5d5a670a1c72fc 100644 (file)
@@ -50,12 +50,11 @@ class User : public Value {
   template <unsigned>
   friend struct HungoffOperandTraits;
 protected:
-  /// OperandList - This is a pointer to the array of Users for this operand.
+  /// OperandList - This is a pointer to the array of Uses for this User.
   /// For nodes of fixed arity (e.g. a binary operator) this array will live
-  /// prefixed to the derived class.  For nodes of resizable variable arity
-  /// (e.g. PHINodes, SwitchInst etc.), this memory will be dynamically
-  /// allocated and should be destroyed by the classes' 
-  /// virtual dtor.
+  /// prefixed to some derived class instance.  For nodes of resizable variable
+  /// arity (e.g. PHINodes, SwitchInst etc.), this memory will be dynamically
+  /// allocated and should be destroyed by the classes' virtual dtor.
   Use *OperandList;
 
   /// NumOperands - The number of values used by this User.