From dec7c3b96e3f8ea75170658ab550ea0a66fdb334 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 15 Sep 2023 08:14:55 -0400 Subject: [PATCH] cli: Fix a doc link Just noticed this running `cargo doc --lib`. --- lib/src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/cli.rs b/lib/src/cli.rs index 57a004c8..d818fb71 100644 --- a/lib/src/cli.rs +++ b/lib/src/cli.rs @@ -826,7 +826,7 @@ fn handle_serialize_to_file(path: Option<&Utf8Path>, obj: T } /// Parse the provided arguments and execute. -/// Calls [`structopt::clap::Error::exit`] on failure, printing the error message and aborting the program. +/// Calls [`clap::Error::exit`] on failure, printing the error message and aborting the program. pub async fn run_from_iter(args: I) -> Result<()> where I: IntoIterator,