Fix a spello Misha made while fixing one of my appostrifications

llvm-svn: 8510
This commit is contained in:
Chris Lattner 2003-09-15 00:33:20 +00:00
parent 20c8c040f5
commit af4c95a051
1 changed files with 1 additions and 1 deletions

View File

@ -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. :( :( :(