[clang-tidy] Fix reference to -[NSError init] in AvoidNSErrorInitCheck.h
authorStephane Moore <mog@google.com>
Thu, 15 Nov 2018 22:38:39 +0000 (22:38 +0000)
committerStephane Moore <mog@google.com>
Thu, 15 Nov 2018 22:38:39 +0000 (22:38 +0000)
llvm-svn: 347000

clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h

index bec19b2..379b8a2 100644 (file)
@@ -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: