Author: stephanemoore
Date: Thu Nov 15 14:38:39 2018
New Revision: 347000

URL: http://llvm.org/viewvc/llvm-project?rev=347000&view=rev
Log:
[clang-tidy] Fix reference to -[NSError init] in AvoidNSErrorInitCheck.h

Modified:
    clang-tools-extra/trunk/clang-tidy/objc/AvoidNSErrorInitCheck.h

Modified: clang-tools-extra/trunk/clang-tidy/objc/AvoidNSErrorInitCheck.h
URL: 
http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/objc/AvoidNSErrorInitCheck.h?rev=347000&r1=346999&r2=347000&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/objc/AvoidNSErrorInitCheck.h (original)
+++ clang-tools-extra/trunk/clang-tidy/objc/AvoidNSErrorInitCheck.h Thu Nov 15 
14:38:39 2018
@@ -16,7 +16,7 @@ namespace clang {
 namespace tidy {
 namespace objc {
 
-/// Finds usages of [NSSError init]. It is not the proper way of creating
+/// Finds usages of -[NSError init]. It is not the proper way of creating
 /// NSError. errorWithDomain:code:userInfo: should be used instead.
 ///
 /// For the user-facing documentation see:


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to