diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-07-17 18:33:44 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2014-07-17 18:33:44 +0000 |
commit | 0fc52d4e85f71d68fd44159435cfc3be56b80c5c (patch) | |
tree | dfcf7cd3d2b8192ef0cc3c4445bad411b6b4039f /llvm/lib/Support/raw_ostream.cpp | |
parent | b3a4969b70c1b869879c7bcf7e9f0d658d7f2e26 (diff) | |
download | bcm5719-llvm-0fc52d4e85f71d68fd44159435cfc3be56b80c5c.tar.gz bcm5719-llvm-0fc52d4e85f71d68fd44159435cfc3be56b80c5c.zip |
Typo: exists -> exits
llvm-svn: 213290
Diffstat (limited to 'llvm/lib/Support/raw_ostream.cpp')
-rw-r--r-- | llvm/lib/Support/raw_ostream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index d156826144a..0790be5305e 100644 --- a/llvm/lib/Support/raw_ostream.cpp +++ b/llvm/lib/Support/raw_ostream.cpp @@ -660,7 +660,7 @@ bool raw_fd_ostream::has_colors() const { /// Use it like: outs() << "foo" << "bar"; raw_ostream &llvm::outs() { // Set buffer settings to model stdout behavior. - // Delete the file descriptor when the program exists, forcing error + // Delete the file descriptor when the program exits, forcing error // detection. If you don't want this behavior, don't use outs(). static raw_fd_ostream S(STDOUT_FILENO, true); return S; |