Fix indentation in example code in a comment.
authorDan Gohman <gohman@apple.com>
Mon, 16 Aug 2010 14:45:36 +0000 (14:45 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 16 Aug 2010 14:45:36 +0000 (14:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111125 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/FoldingSet.h

index 9e080c4e68f6e406465aa44f1b26871e759d2029..72f921395c0734639a3db4e35d639ecbcb41ccc2 100644 (file)
@@ -54,9 +54,9 @@ namespace llvm {
 ///      void Profile(FoldingSetNodeID &ID) const {
 ///        ID.AddString(Name);
 ///        ID.AddInteger(Value);
-///       }
-///       ...
-///     };
+///      }
+///      ...
+///    };
 ///
 /// To define the folding set itself use the FoldingSet template;
 ///