From: Hans Wennborg Date: Thu, 17 Jul 2014 18:33:44 +0000 (+0000) Subject: Typo: exists -> exits X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c636a42d4a72e8f6017298787b07a6ef0019bed8;p=oota-llvm.git Typo: exists -> exits git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213290 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp index d156826144a..0790be5305e 100644 --- a/lib/Support/raw_ostream.cpp +++ b/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;