diff options
| -rw-r--r-- | mingling_cli/src/lints/non_mingling_naming_style.rs | 16 |
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). //! |
