summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKIM Taegyoon <steloflute@gmail.com>2023-09-08 14:32:43 +0900
committerGitHub <noreply@github.com>2023-09-08 13:32:43 +0800
commit4635601b6a3c6d510bfdafb818051d801bbb438c (patch)
treed7284711a5b2c51ab128e8638ca1b6bf424b8be0
parent78f4c87f817940b0e6bb9f9d2e8fe4542126c5b3 (diff)
added block comments (#4743)
-rw-r--r--rust.html.markdown3
1 files changed, 3 insertions, 0 deletions
diff --git a/rust.html.markdown b/rust.html.markdown
index c677ed96..526d20d5 100644
--- a/rust.html.markdown
+++ b/rust.html.markdown
@@ -30,6 +30,9 @@ Rust not only fast, but also easy and efficient to code in.
// This is a comment. Line comments look like this...
// and extend multiple lines like this.
+/* Block comments
+ /* can be nested. */ */
+
/// Documentation comments look like this and support markdown notation.
/// # Examples
///