diff options
author | Raphael Isemann <teemperor@gmail.com> | 2018-12-10 12:37:46 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2018-12-10 12:37:46 +0000 |
commit | b23ccecbb0a99fc4d0bd605f5b42697d895f07b8 (patch) | |
tree | 3781550b8411d21eecc7f591ac07aa939d62e2b9 /clang/lib/Rewrite/RewriteRope.cpp | |
parent | 4c4d2fe280bc8a04598e7e9d75c63fb64ee4cd81 (diff) | |
download | bcm5719-llvm-b23ccecbb0a99fc4d0bd605f5b42697d895f07b8.tar.gz bcm5719-llvm-b23ccecbb0a99fc4d0bd605f5b42697d895f07b8.zip |
Misc typos fixes in ./lib folder
Summary: Found via `codespell -q 3 -I ../clang-whitelist.txt -L uint,importd,crasher,gonna,cant,ue,ons,orign,ned`
Reviewers: teemperor
Reviewed By: teemperor
Subscribers: teemperor, jholewinski, jvesely, nhaehnle, whisperity, jfb, cfe-commits
Differential Revision: https://reviews.llvm.org/D55475
llvm-svn: 348755
Diffstat (limited to 'clang/lib/Rewrite/RewriteRope.cpp')
-rw-r--r-- | clang/lib/Rewrite/RewriteRope.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Rewrite/RewriteRope.cpp b/clang/lib/Rewrite/RewriteRope.cpp index 5bc79f3eddc..e3b47a1c52f 100644 --- a/clang/lib/Rewrite/RewriteRope.cpp +++ b/clang/lib/Rewrite/RewriteRope.cpp @@ -59,7 +59,7 @@ using namespace clang; /// /// RopePieceBTreeLeaf - Directly manages up to '2*WidthFactor' RopePiece /// nodes. This directly represents a chunk of the string with those -/// RopePieces contatenated. +/// RopePieces concatenated. /// RopePieceBTreeInterior - An interior node in the B+ Tree, which manages /// up to '2*WidthFactor' other nodes in the tree. @@ -128,7 +128,7 @@ namespace { /// RopePieceBTreeLeaf - Directly manages up to '2*WidthFactor' RopePiece /// nodes. This directly represents a chunk of the string with those - /// RopePieces contatenated. Since this is a B+Tree, all values (in this case + /// RopePieces concatenated. Since this is a B+Tree, all values (in this case /// instances of RopePiece) are stored in leaves like this. To make iteration /// over the leaves efficient, they maintain a singly linked list through the /// NextLeaf field. This allows the B+Tree forward iterator to be constant |