diff --git a/src/cli.rs b/src/cli.rs index 06c315b8..664e7c87 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -94,7 +94,7 @@ pub struct BuildArgs { /// Available top-level commands for Netsuke. #[derive(Debug, Subcommand, PartialEq, Eq, Clone)] pub enum Commands { - /// Build specified targets (or default targets if none are given) [default]. + /// Build specified targets (or default targets if none are given) `default`. Build(BuildArgs), /// Remove build artifacts and intermediate files. diff --git a/src/runner.rs b/src/runner.rs index 0b0aff19..e1cdcec0 100644 --- a/src/runner.rs +++ b/src/runner.rs @@ -1,6 +1,6 @@ //! CLI execution and command dispatch logic. //! -//! This module keeps [`main`] minimal by providing a single entry point that +//! This module keeps `main` minimal by providing a single entry point that //! handles command execution. It now delegates build requests to the Ninja //! subprocess, streaming its output back to the user.