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

via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 28 20:34:35 PST 2023


Author: Dan Klishch
Date: 2023-11-29T05:34:31+01:00
New Revision: c6d6a57c697452e9320acea86f6631a92ab8017c

URL: https://github.com/llvm/llvm-project/commit/c6d6a57c697452e9320acea86f6631a92ab8017c
DIFF: https://github.com/llvm/llvm-project/commit/c6d6a57c697452e9320acea86f6631a92ab8017c.diff

LOG: [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)

Added: 
    

Modified: 
    clang/include/clang/Basic/AttrDocs.td

Removed: 
    


################################################################################
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