diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy')
-rw-r--r-- | clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h b/clang-tools-extra/clang-tidy/objc/AvoidNSErrorInitCheck.h index bec19b289ed..379b8a2a517 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: |