From ee1290c9362570bb6ed0b5be2e495d3156018909 Mon Sep 17 00:00:00 2001 From: Leynos Date: Tue, 12 Aug 2025 10:12:06 +0100 Subject: [PATCH] Clarify doc links Replace bracketed placeholders with literal text to avoid broken intra-doc links. --- src/cli.rs | 2 +- src/runner.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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.