From: Nick Lewycky Date: Sat, 6 Apr 2019 22:05:24 +0000 (+0000) Subject: [NFC] Fix typo in comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aaf08591e9809bd25c655a46dea004072d1aaded;p=llvm [NFC] Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@357849 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/BreadthFirstIterator.h b/include/llvm/ADT/BreadthFirstIterator.h index cc6c8600e10..e97d76680db 100644 --- a/include/llvm/ADT/BreadthFirstIterator.h +++ b/include/llvm/ADT/BreadthFirstIterator.h @@ -124,7 +124,7 @@ public: const NodeRef &operator*() const { return VisitQueue.front()->first; } - // This is a nonstandard operator-> that dereferenfces the pointer an extra + // This is a nonstandard operator-> that dereferences the pointer an extra // time so that you can actually call methods on the node, because the // contained type is a pointer. NodeRef operator->() const { return **this; }