diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-15 17:34:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-15 17:34:43 +0000 |
commit | 1f5c5b989c20e416fcf26633e342cdfb68dab1bd (patch) | |
tree | 58861282b6cf4d7e5bc89f0cc6ea6f86aabfd5d5 | |
parent | a1bdcedc3879510a874d24c450e07feb170d9cd6 (diff) |
Fix a thinko in a comment that Duncan spotted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75803 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/raw_ostream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/raw_ostream.h b/include/llvm/Support/raw_ostream.h index 2b7b62bce4..2cf9d22903 100644 --- a/include/llvm/Support/raw_ostream.h +++ b/include/llvm/Support/raw_ostream.h @@ -311,7 +311,7 @@ raw_ostream &errs(); //===----------------------------------------------------------------------===// /// 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; |