[Lldb-commits] [lldb] r363356 - Fixed typos in Log.h

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 13 23:06:47 PDT 2019


Author: jdevlieghere
Date: Thu Jun 13 23:06:47 2019
New Revision: 363356

URL: http://llvm.org/viewvc/llvm-project?rev=363356&view=rev
Log:
Fixed typos in Log.h

Patch by: Yuya Fujita

Differential revision: https://reviews.llvm.org/D63241

Modified:
    lldb/trunk/include/lldb/Utility/Log.h

Modified: lldb/trunk/include/lldb/Utility/Log.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Utility/Log.h?rev=363356&r1=363355&r2=363356&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Utility/Log.h (original)
+++ lldb/trunk/include/lldb/Utility/Log.h Thu Jun 13 23:06:47 2019
@@ -69,7 +69,7 @@ public:
         : log_ptr(nullptr), categories(categories),
           default_flags(default_flags) {}
 
-    // This function is safe to call at any time If the channel is disabled
+    // This function is safe to call at any time. If the channel is disabled
     // after (or concurrently with) this function returning a non-null Log
     // pointer, it is still safe to attempt to write to the Log object -- the
     // output will be discarded.
@@ -80,7 +80,7 @@ public:
       return nullptr;
     }
 
-    // This function is safe to call at any time If the channel is disabled
+    // This function is safe to call at any time. If the channel is disabled
     // after (or concurrently with) this function returning a non-null Log
     // pointer, it is still safe to attempt to write to the Log object -- the
     // output will be discarded.




More information about the lldb-commits mailing list