aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-15 00:33:20 +0000
committerChris Lattner <sabre@nondot.org>2003-09-15 00:33:20 +0000
commitabe83ae992248281c47d51039aeb7a3913f2782f (patch)
tree47efdd9832ec594032213870e4893052681c06e3 /lib
parentfb5e060f2b2c314a40bad8409c6548eefb3782b0 (diff)
downloadexternal_llvm-abe83ae992248281c47d51039aeb7a3913f2782f.zip
external_llvm-abe83ae992248281c47d51039aeb7a3913f2782f.tar.gz
external_llvm-abe83ae992248281c47d51039aeb7a3913f2782f.tar.bz2
Fix a spello Misha made while fixing one of my appostrifications
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Bytecode/Writer/Writer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp
index b119c3d..f368637 100644
--- a/lib/Bytecode/Writer/Writer.cpp
+++ b/lib/Bytecode/Writer/Writer.cpp
@@ -3,7 +3,7 @@
// This library implements the functionality defined in llvm/Bytecode/Writer.h
//
// Note that this file uses an unusual technique of outputting all the bytecode
-// to a deque of unsigned chare, then copies the deque to an ostream. The
+// to a deque of unsigned char, then copies the deque to an ostream. The
// reason for this is that we must do "seeking" in the stream to do back-
// patching, and some very important ostreams that we want to support (like
// pipes) do not support seeking. :( :( :(