[lld] r299128 - Update comments.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 30 15:57:49 PDT 2017


Author: ruiu
Date: Thu Mar 30 17:57:49 2017
New Revision: 299128

URL: http://llvm.org/viewvc/llvm-project?rev=299128&view=rev
Log:
Update comments.

Modified:
    lld/trunk/ELF/Error.h

Modified: lld/trunk/ELF/Error.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Error.h?rev=299128&r1=299127&r2=299128&view=diff
==============================================================================
--- lld/trunk/ELF/Error.h (original)
+++ lld/trunk/ELF/Error.h Thu Mar 30 17:57:49 2017
@@ -15,13 +15,13 @@
 // Error prints out an error message and increment a global variable
 // ErrorCount to record the fact that we met an error condition. It does
 // not exit, so it is safe for a lld-as-a-library use case. It is generally
-// useful because it can report more than one errors in a single run.
+// useful because it can report more than one error in a single run.
 //
 // Warn doesn't do anything but printing out a given message.
 //
 // It is not recommended to use llvm::outs() or llvm::errs() directly
 // in LLD because they are not thread-safe. The functions declared in
-// this file are thread-safe, so you want to use them instead.
+// this file are mutually excluded, so you want to use them instead.
 //
 //===----------------------------------------------------------------------===//
 




More information about the llvm-commits mailing list