summaryrefslogtreecommitdiff
path: root/include/llvm/Support/raw_ostream.h
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-11-26 04:16:20 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-11-26 04:16:20 +0000
commit052f1eebdb6dbfb3f1197cc91f28ebc688ffb02d (patch)
tree181fb5f7a85b8891327dace1e51833352354d7e3 /include/llvm/Support/raw_ostream.h
parent326990f1eb7ff005adabe46a1f982eff8835813e (diff)
downloadllvm-052f1eebdb6dbfb3f1197cc91f28ebc688ffb02d.tar.gz
llvm-052f1eebdb6dbfb3f1197cc91f28ebc688ffb02d.tar.bz2
llvm-052f1eebdb6dbfb3f1197cc91f28ebc688ffb02d.tar.xz
Fix spelling!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120167 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/raw_ostream.h')
-rw-r--r--include/llvm/Support/raw_ostream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h
index 6bc8935b14..d55feb7b0f 100644
--- a/include/llvm/Support/raw_ostream.h
+++ b/include/llvm/Support/raw_ostream.h
@@ -165,7 +165,7 @@ public:
}
raw_ostream &operator<<(const char *Str) {
- // Inline fast path, particulary for constant strings where a sufficiently
+ // Inline fast path, particularly for constant strings where a sufficiently
// smart compiler will simplify strlen.
return this->operator<<(StringRef(Str));
@@ -358,7 +358,7 @@ public:
void close();
/// seek - Flushes the stream and repositions the underlying file descriptor
- /// positition to the offset specified from the beginning of the file.
+ /// position to the offset specified from the beginning of the file.
uint64_t seek(uint64_t off);
virtual raw_ostream &changeColor(enum Colors colors, bool bold=false,