Skip to content

Commit 93520e1

Browse files
refactor(Document): Rename CLI variable to follow naming convention
Renamed the `matches` variable to `Match` in the Document binary's CLI setup to improve code consistency and clarity. This change aligns with Rust naming conventions where PascalCase is used for variable bindings that represent complex types or command structures. While the Document tool is not part of Land's core runtime architecture (Mountain/Cocoon/Wind), it supports project documentation workflows. Maintaining clean code standards across all project components ensures long-term maintainability of our build and documentation tooling.
1 parent fe856a8 commit 93520e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/Fn/Binary/Document.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use Library::Fn::Cache;
44
use clap::{Command, arg};
55

66
fn main() {
7-
let matches = Command::new("Document 📄")
7+
let Match = Command::new("Document 📄")
88
.version(env!("CARGO_PKG_VERSION"))
99
.author("Nikola Hristov")
1010
.about("Build.")

0 commit comments

Comments
 (0)