From 20cd5f2e208ac9f047da6680a21c24acbc66aac4 Mon Sep 17 00:00:00 2001 From: Stephane Moore Date: Thu, 15 Nov 2018 22:38:39 +0000 Subject: [PATCH] [clang-tidy] Fix reference to -[NSError init] in AvoidNSErrorInitCheck.h llvm-svn: 347000 --- clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h b/clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h index bec19b289eda..379b8a2a5179 100644 --- a/clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h +++ b/clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h @@ -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: