[llvm] r213290 - Typo: exists -> exits
Hans Wennborg
hans at hanshq.net
Thu Jul 17 11:33:44 PDT 2014
Author: hans
Date: Thu Jul 17 13:33:44 2014
New Revision: 213290
URL: http://llvm.org/viewvc/llvm-project?rev=213290&view=rev
Log:
Typo: exists -> exits
Modified:
llvm/trunk/lib/Support/raw_ostream.cpp
Modified: llvm/trunk/lib/Support/raw_ostream.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/raw_ostream.cpp?rev=213290&r1=213289&r2=213290&view=diff
==============================================================================
--- llvm/trunk/lib/Support/raw_ostream.cpp (original)
+++ llvm/trunk/lib/Support/raw_ostream.cpp Thu Jul 17 13:33:44 2014
@@ -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;
More information about the llvm-commits
mailing list