From 5b9409bec2298c9af8169ab717254e19d02b14e5 Mon Sep 17 00:00:00 2001 From: godsfryingpan Date: Mon, 23 Mar 2026 17:29:43 -0500 Subject: [PATCH] Add descriptions for fmt and lint --- src/app.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app.rs b/src/app.rs index 4496e02..b820373 100644 --- a/src/app.rs +++ b/src/app.rs @@ -76,7 +76,9 @@ enum Subcommand { /// The package to remove package: String, }, + /// Format C source code using clang-format Fmt, + /// Lint C source code using clang-tidy Lint, }