summaryrefslogtreecommitdiff
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorSimon Atanasyan <simon@atanasyan.com>2014-04-07 12:59:36 +0000
committerSimon Atanasyan <simon@atanasyan.com>2014-04-07 12:59:36 +0000
commit503334ab44b3fe5e2eaa012170fcc05926f52d8a (patch)
tree5be8c0227124a84f007a7e1628da3017c03372df /include/llvm/Support
parent231ed9dd9c34551524767ea04073c19a1c52ce2e (diff)
downloadllvm-503334ab44b3fe5e2eaa012170fcc05926f52d8a.tar.gz
llvm-503334ab44b3fe5e2eaa012170fcc05926f52d8a.tar.bz2
llvm-503334ab44b3fe5e2eaa012170fcc05926f52d8a.tar.xz
Fix a typo in the comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205707 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/YAMLTraits.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/YAMLTraits.h b/include/llvm/Support/YAMLTraits.h
index 774438d95e..44db30ac6e 100644
--- a/include/llvm/Support/YAMLTraits.h
+++ b/include/llvm/Support/YAMLTraits.h
@@ -32,7 +32,7 @@ namespace yaml {
/// This class should be specialized by any type that needs to be converted
/// to/from a YAML mapping. For example:
///
-/// struct ScalarBitSetTraits<MyStruct> {
+/// struct MappingTraits<MyStruct> {
/// static void mapping(IO &io, MyStruct &s) {
/// io.mapRequired("name", s.name);
/// io.mapRequired("size", s.size);