[clang] [clang][docs] Fix emphasis syntax in attribute documentation (PR #73737)

Dan Klishch via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 28 19:06:30 PST 2023


https://github.com/DanShaders created https://github.com/llvm/llvm-project/pull/73737

This causes CI failure for PRs updating `AttrDocs.td`. CC @llvm-beanz

>From d30a251b2026065de3260f473b34c080102504e9 Mon Sep 17 00:00:00 2001
From: Dan Klishch <danilklishch at gmail.com>
Date: Tue, 28 Nov 2023 22:04:47 -0500
Subject: [PATCH] [clang][docs] Fix emphasis syntax in attribute documentation

---
 clang/include/clang/Basic/AttrDocs.td | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clang/include/clang/Basic/AttrDocs.td b/clang/include/clang/Basic/AttrDocs.td
index b7f366c29b77b48..bf89c5a941c3f89 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,



More information about the cfe-commits mailing list