[llvm-commits] [llvm] r75803 - /llvm/trunk/include/llvm/Support/raw_ostream.h

Dan Gohman gohman at apple.com
Wed Jul 15 10:34:43 PDT 2009


Author: djg
Date: Wed Jul 15 12:34:43 2009
New Revision: 75803

URL: http://llvm.org/viewvc/llvm-project?rev=75803&view=rev
Log:
Fix a thinko in a comment that Duncan spotted.

Modified:
    llvm/trunk/include/llvm/Support/raw_ostream.h

Modified: llvm/trunk/include/llvm/Support/raw_ostream.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/raw_ostream.h?rev=75803&r1=75802&r2=75803&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/raw_ostream.h (original)
+++ llvm/trunk/include/llvm/Support/raw_ostream.h Wed Jul 15 12:34:43 2009
@@ -311,7 +311,7 @@
 //===----------------------------------------------------------------------===//
 
 /// raw_os_ostream - A raw_ostream that writes to an std::ostream.  This is a
-/// simple adaptor class.  It does check for I/O errors; clients should use
+/// simple adaptor class.  It does not check for I/O errors; clients should use
 /// the underlying stream to detect errors.
 class raw_os_ostream : public raw_ostream {
   std::ostream &OS;





More information about the llvm-commits mailing list