aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Klishch <30951924+DanShaders@users.noreply.github.com>2023-11-28 23:34:31 -0500
committerGitHub <noreply@github.com>2023-11-29 05:34:31 +0100
commitc6d6a57c697452e9320acea86f6631a92ab8017c (patch)
treeec2db6f52eaff2cd3fa3d66f184342c56dfd3269
parentf73844d92b36cb6801ac50ea721f4ba29b35d7a9 (diff)
downloadllvm-c6d6a57c697452e9320acea86f6631a92ab8017c.zip
llvm-c6d6a57c697452e9320acea86f6631a92ab8017c.tar.gz
llvm-c6d6a57c697452e9320acea86f6631a92ab8017c.tar.bz2
[clang][docs] Fix emphasis syntax in attribute documentation (#73737)
This causes CI failure for PRs updating `AttrDocs.td`. CC @llvm-beanz (I don't have write access)
-rw-r--r--clang/include/clang/Basic/AttrDocs.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Basic/AttrDocs.td b/clang/include/clang/Basic/AttrDocs.td
index b7f366c2..bf89c5a9 100644
--- a/clang/include/clang/Basic/AttrDocs.td
+++ b/clang/include/clang/Basic/AttrDocs.td
@@ -7073,7 +7073,7 @@ Parameters annotated with `in` or with no annotation are passed by value from
the caller to the callee.
Parameters annotated with `out` are written to the argument after the callee
-returns (Note: arguments values passed into `out` parameters _are not_ copied
+returns (Note: arguments values passed into `out` parameters *are not* copied
into the callee).
Parameters annotated with `inout` are copied into the callee via a temporary,