From 0fc52d4e85f71d68fd44159435cfc3be56b80c5c Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Thu, 17 Jul 2014 18:33:44 +0000 Subject: [PATCH] Typo: exists -> exits llvm-svn: 213290 --- llvm/lib/Support/raw_ostream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp index d156826144a9..0790be5305e2 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;