From e0b13ff0dec1500a0e29b34bf38661d658fcce22 Mon Sep 17 00:00:00 2001 From: Jamie Tsai Date: Thu, 5 Jun 2025 10:31:24 -0400 Subject: [PATCH] Fix typo --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index a7439595b..e45e719d4 100644 --- a/src/error.rs +++ b/src/error.rs @@ -47,7 +47,7 @@ pub const UNKNOWN_TRANSACTION_COMMIT_RESULT: &str = "UnknownTransactionCommitRes pub type Result = std::result::Result; /// An error that can occur in the `mongodb` crate. The inner -/// [`ErrorKind`](enum.ErrorKind.html) is wrapped in an `Arc` to allow the errors to be +/// [`ErrorKind`](enum.ErrorKind.html) is wrapped in an `Box` to allow the errors to be /// cloned. #[derive(Clone, Debug, Error)] #[cfg_attr(test, error("Kind: {kind}, labels: {labels:?}, backtrace: {bt}"))]