Update suggestions.md (#744)

给Rust添加注释说明
This commit is contained in:
Horbin 2023-09-13 02:51:23 +08:00 committed by GitHub
parent 4a923f5a86
commit 3e41e2f475
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,7 +133,14 @@
=== "Rust"
```rust title=""
/* 标题注释,用于标注函数、类、测试样例等 */
// 内容注释,用于详解代码
/**
* 多行
* 注释
*/
```
=== "C"