From e01acc8d97812200f667c26f92d4d0d0f8880ce7 Mon Sep 17 00:00:00 2001 From: Senrian <47714364+Senrian@users.noreply.github.com> Date: Mon, 30 Mar 2026 14:47:46 +0800 Subject: [PATCH] fix: change Rust multi-line comment format from /** to // (#1859) --- docs/chapter_preface/suggestions.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/chapter_preface/suggestions.md b/docs/chapter_preface/suggestions.md index b0cebea78..64b097178 100644 --- a/docs/chapter_preface/suggestions.md +++ b/docs/chapter_preface/suggestions.md @@ -137,10 +137,8 @@ // 内容注释,用于详解代码 - /** - * 多行 - * 注释 - */ + // 多行 + // 注释 ``` === "C"