[llvm] r283552 - Remove spurious non-printable character from source file.

Benjamin Kramer via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 7 06:46:39 PDT 2016


Author: d0k
Date: Fri Oct  7 08:46:38 2016
New Revision: 283552

URL: http://llvm.org/viewvc/llvm-project?rev=283552&view=rev
Log:
Remove spurious non-printable character from source file.

NFC.

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

Modified: llvm/trunk/include/llvm/ADT/DepthFirstIterator.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/DepthFirstIterator.h?rev=283552&r1=283551&r2=283552&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/DepthFirstIterator.h (original)
+++ llvm/trunk/include/llvm/ADT/DepthFirstIterator.h Fri Oct  7 08:46:38 2016
@@ -61,7 +61,7 @@ public:
 // The visited stated for the iteration is a simple set augmented with
 // one more method, completed, which is invoked when all children of a
 // node have been processed. It is intended to distinguish of back and
-// cross edges in the spanning tree but is not used in the common case.
+// cross edges in the spanning tree but is not used in the common case.
 template <typename NodeRef, unsigned SmallSize=8>
 struct df_iterator_default_set : public llvm::SmallPtrSet<NodeRef, SmallSize> {
   typedef llvm::SmallPtrSet<NodeRef, SmallSize>  BaseSet;




More information about the llvm-commits mailing list