Fix comments.
authorTorok Edwin <edwintorok@gmail.com>
Thu, 4 Jun 2009 08:18:25 +0000 (08:18 +0000)
committerTorok Edwin <edwintorok@gmail.com>
Thu, 4 Jun 2009 08:18:25 +0000 (08:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72858 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/System/Process.h
lib/System/Win32/Process.inc

index adc1f03deb41d09be93fd92a28d7fa019c93578d..11dbf759a6c4f8cffe2213c1d15c9d7f60c63530 100644 (file)
@@ -123,8 +123,7 @@ namespace sys {
       /// changing colors.
       static bool ColorNeedsFlush();
 
-      /// This function returns the colorcode escape sequences, and sets Len to
-      /// the length of the escape sequence.
+      /// This function returns the colorcode escape sequences.
       /// If ColorNeedsFlush() is true then this function will change the colors
       /// and return an empty escape sequence. In that case it is the
       /// responsibility of the client to flush the output stream prior to
index 97eba5808dfe30e69258295e574d593022d98fb6..cfbe33c85a2f33e5e5df3005b2766e56ed8b5b7c 100644 (file)
@@ -147,7 +147,7 @@ unsigned Process::StandardErrColumns() {
   return Columns;
 }
 
-// it always has colors
+// It always has colors.
 bool Process::StandardErrHasColors() {
   return StandardErrIsDisplayed();
 }
@@ -155,6 +155,7 @@ bool Process::StandardErrHasColors() {
 bool Process::StandardOutHasColors() {
   return StandardOutIsDisplayed();
 }
+
 namespace {
 class DefaultColors
 {