[clang-tidy] Fix reference to -[NSError init] in AvoidNSErrorInitCheck.h

llvm-svn: 347000
This commit is contained in:
Stephane Moore 2018-11-15 22:38:39 +00:00
parent 101616a8be
commit 20cd5f2e20
1 changed files with 1 additions and 1 deletions

View 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: