[llvm-commits] [llvm] r48543 - /llvm/trunk/include/llvm/ADT/FoldingSet.h

Duncan Sands baldrick at free.fr
Wed Mar 19 04:00:02 PDT 2008


Author: baldrick
Date: Wed Mar 19 05:59:59 2008
New Revision: 48543

URL: http://llvm.org/viewvc/llvm-project?rev=48543&view=rev
Log:
Fix comment.

Modified:
    llvm/trunk/include/llvm/ADT/FoldingSet.h

Modified: llvm/trunk/include/llvm/ADT/FoldingSet.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/FoldingSet.h?rev=48543&r1=48542&r2=48543&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/FoldingSet.h (original)
+++ llvm/trunk/include/llvm/ADT/FoldingSet.h Wed Mar 19 05:59:59 2008
@@ -32,7 +32,7 @@
 /// 
 /// This class is implemented as a single-link chained hash table, where the
 /// "buckets" are actually the nodes themselves (the next pointer is in the
-/// node).  The last node points back to the bucket to simplified node removal.
+/// node).  The last node points back to the bucket to simplify node removal.
 ///
 /// Any node that is to be included in the folding set must be a subclass of
 /// FoldingSetNode.  The node class must also define a Profile method used to





More information about the llvm-commits mailing list