From ba54ba47eefc6f109cca9f1fa462c3f8ea6238ed Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 13 Mar 2025 07:31:00 +0100 Subject: [PATCH] docs(tvix/cli): fix docstring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We cannot just escape the square brackets as rustdoc suggests, because clap outputs the docstring verbatim, without any escaping to the user. Change-Id: I7ce7932e35ee1b01bccbc142a7bdc7af9ce7e51e Reviewed-on: https://cl.tvl.fyi/c/depot/+/13256 Tested-by: BuildkiteCI Reviewed-by: Marijan Petričević Autosubmit: flokli Reviewed-by: Domen Kožar --- tvix/cli/src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvix/cli/src/args.rs b/tvix/cli/src/args.rs index af9294c3e..27c949897 100644 --- a/tvix/cli/src/args.rs +++ b/tvix/cli/src/args.rs @@ -5,7 +5,7 @@ use tvix_store::utils::ServiceUrlsMemory; /// Provides a CLI interface to trigger evaluation using tvix-eval. /// -/// Uses configured tvix-[ca]store and tvix-build components, +/// Uses configured tvix-{ca,}store and tvix-build components, /// and by default a set of builtins similar to these present in Nix. /// /// None of the stores available add to the local `/nix/store` location.