[flang-commits] [flang] 0e56f6d - [flang][docs][NFC] Fix Markdown `/*comments*/` (#129018)

via flang-commits flang-commits at lists.llvm.org
Thu Feb 27 17:18:41 PST 2025


Author: KAWASHIMA Takahiro
Date: 2025-02-28T10:18:37+09:00
New Revision: 0e56f6dc3e0cc939c9bda93afe4dfd528a8445cb

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

LOG: [flang][docs][NFC] Fix Markdown `/*comments*/` (#129018)

`*` in `/*comments*/` were interpreted as emphasis marks and were not
displayed in https://flang.llvm.org/docs/Extensions.html.

Added: 
    

Modified: 
    flang/docs/Extensions.md

Removed: 
    


################################################################################
diff  --git a/flang/docs/Extensions.md b/flang/docs/Extensions.md
index e70f40306c4e1..d781dee75e07e 100644
--- a/flang/docs/Extensions.md
+++ b/flang/docs/Extensions.md
@@ -218,7 +218,7 @@ end
   the length parameter of the implicit type, not the first.
 * Outside a character literal, a comment after a continuation marker (&)
   need not begin with a comment marker (!).
-* Classic C-style /*comments*/ are skipped, so multi-language header
+* Classic C-style `/*comments*/` are skipped, so multi-language header
   files are easier to write and use.
 * $ and \ edit descriptors are supported in FORMAT to suppress newline
   output on user prompts.


        


More information about the flang-commits mailing list