fix comment typo
authorChris Lattner <sabre@nondot.org>
Fri, 28 Nov 2008 23:57:26 +0000 (23:57 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 28 Nov 2008 23:57:26 +0000 (23:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60227 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/PointerIntPair.h

index d2d7ff168f8dafa41fa4c6f2832ef416c0063117..6b437b9ff5a3d320d69db174ba935f5096d4fff2 100644 (file)
@@ -19,7 +19,7 @@
 namespace llvm {
   
 /// PointerIntPair - This class implements a pair of a pointer and small
-/// integer.  It is designed to represet this in the space required by one
+/// integer.  It is designed to represent this in the space required by one
 /// pointer by bitmangling the integer into the low part of the pointer.  This
 /// can only be done for small integers: typically up to 3 bits, but it depends
 /// on the alignment returned by the allocator in use.