From 00b9b695c44f599dade1c0fe6d70c9e1e604fdd7 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Mon, 30 Dec 2013 20:16:30 +0000 Subject: [PATCH] Fix two typos in comments. No functionality change. llvm-svn: 198243 --- clang/include/clang/AST/AttrIterator.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/include/clang/AST/AttrIterator.h b/clang/include/clang/AST/AttrIterator.h index 8bd8fbe..4ecf98f 100644 --- a/clang/include/clang/AST/AttrIterator.h +++ b/clang/include/clang/AST/AttrIterator.h @@ -43,7 +43,7 @@ typedef SmallVector AttrVec; typedef SmallVector ConstAttrVec; /// specific_attr_iterator - Iterates over a subrange of an AttrVec, only -/// providing attributes that are of a specifc type. +/// providing attributes that are of a specific type. template class specific_attr_iterator { typedef typename Container::const_iterator Iterator; @@ -53,7 +53,7 @@ class specific_attr_iterator { /// specifically requested, we don't necessarily advance this all the /// way. Instead, we advance it when an operation is requested; if the /// operation is acting on what should be a past-the-end iterator, - /// then we offer no guarantees, but this way we do not dererence a + /// then we offer no guarantees, but this way we do not dereference a /// past-the-end iterator when we move to a past-the-end position. mutable Iterator Current; -- 2.7.4