fix typos; NFC
authorSanjay Patel <spatel@rotateright.com>
Mon, 6 Apr 2015 16:21:12 +0000 (16:21 +0000)
committerSanjay Patel <spatel@rotateright.com>
Mon, 6 Apr 2015 16:21:12 +0000 (16:21 +0000)
llvm-svn: 234171

llvm/lib/Support/FoldingSet.cpp

index 80d2aef..b8538ff 100644 (file)
@@ -51,8 +51,8 @@ bool FoldingSetNodeIDRef::operator<(FoldingSetNodeIDRef RHS) const {
 ///
 void FoldingSetNodeID::AddPointer(const void *Ptr) {
   // Note: this adds pointers to the hash using sizes and endianness that
-  // depend on the host.  It doesn't matter however, because hashing on
-  // pointer values in inherently unstable.  Nothing  should depend on the 
+  // depend on the host. It doesn't matter, however, because hashing on
+  // pointer values is inherently unstable. Nothing should depend on the
   // ordering of nodes in the folding set.
   Bits.append(reinterpret_cast<unsigned *>(&Ptr),
               reinterpret_cast<unsigned *>(&Ptr+1));