[NFC] [Doc] Fix example for AnnotateTypeDocs
authorXiang Li <python3kgae@outlook.com>
Thu, 5 Jan 2023 21:29:09 +0000 (16:29 -0500)
committerXiang Li <python3kgae@outlook.com>
Thu, 5 Jan 2023 21:32:02 +0000 (16:32 -0500)
Change clang::annotate into clang::annotate_type.

The example will get error like
error: 'annotate' attribute cannot be applied to types
int* [[clang::annotate("category1", "foo", 1)]] f(int[[clang::annotate("category2")]] *);

Reviewed By: aaron.ballman

Differential Revision: https://reviews.llvm.org/D139935

clang/include/clang/Basic/AttrDocs.td

index 2dc5e7d..6d7a3ff 100644 (file)
@@ -6705,7 +6705,7 @@ For example:
 
 .. code-block:: c++
 
-  int* [[clang::annotate("category1", "foo", 1)]] f(int[[clang::annotate("category2")]] *);
+  int* [[clang::annotate_type("category1", "foo", 1)]] f(int[[clang::annotate_type("category2")]] *);
 
 The attribute does not have any effect on the semantics of the type system,
 neither type checking rules, nor runtime semantics. In particular: