From bfcdc3fde5a39eb1d51a30c34d31330ea88b242f Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 13 Aug 2025 14:30:05 -0400 Subject: Stop mentioning private error types in doctest boilerplate. In 792de8e49fa8a3c04bfb747adadf71572d753055, `crate::cli::Error` was made private. I forgot to update the doctest that mentions it. --- src/cli.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 703bf19..378686b 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -26,10 +26,8 @@ use crate::{ /// arguments for the `pilcrow` server: /// /// ```no_run -/// # use pilcrow::cli::Error; -/// # /// # #[tokio::main] -/// # async fn main() -> Result<(), Error> { +/// # async fn main() -> Result<(), Box> { /// use clap::Parser; /// use pilcrow::cli::Args; /// -- cgit v1.2.3