aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-06 17:08:37 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-06 17:08:37 +0800
commit271ae7ad5992df9e86378faa85c7e7c8e794194b (patch)
tree878a513bb160583aba57ce19fa73fb88786b56d4
parentc944d8dc88b73678d1307a765dc2b0b8d776a22f (diff)
chore: align markdown table formatting
-rw-r--r--mingling_cli/src/lints/non_mingling_naming_style.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/mingling_cli/src/lints/non_mingling_naming_style.rs b/mingling_cli/src/lints/non_mingling_naming_style.rs
index 83168b7..eee3098 100644
--- a/mingling_cli/src/lints/non_mingling_naming_style.rs
+++ b/mingling_cli/src/lints/non_mingling_naming_style.rs
@@ -4,14 +4,14 @@
//!
//! Checks that Mingling functions follow naming conventions:
//!
-//! | Prefix | 1st param must be |
-//! |--------|------------------|
-//! | `handle_` | `Entry*` |
-//! | `handle_state_` | `State*` |
-//! | `handle_error_` | `Error*` |
-//! | `help_` | `Entry*` |
-//! | `render_` | `Result*` |
-//! | `render_error_` | `Error*` |
+//! | Prefix | 1st param must be |
+//! |-----------------|-------------------|
+//! | `handle_` | `Entry*` |
+//! | `handle_state_` | `State*` |
+//! | `handle_error_` | `Error*` |
+//! | `help_` | `Entry*` |
+//! | `render_` | `Result*` |
+//! | `render_error_` | `Error*` |
//!
//! The name after prefix (snake_case) must match the type after prefix (PascalCase).
//!