aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-06 17:08:37 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-07 16:57:24 +0800
commit0db15e95300b2fbec6a041a245f11d56621a52ea (patch)
treef8dc2e23a12255caabb3f2c35098469e00539e39 /mingling_cli
parentde1b1860e13206b456c38d13fc4032ae5ab3a9f6 (diff)
chore: align markdown table formatting
Diffstat (limited to 'mingling_cli')
-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).
//!