From 2e4533eb32c4bd48519cb600719b27362eafe8b4 Mon Sep 17 00:00:00 2001 From: Edwin Date: Tue, 12 Sep 2023 03:38:43 +0200 Subject: [PATCH] remove &mut PoolConnection from docs (#2695) --- sqlx-core/src/executor.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/sqlx-core/src/executor.rs b/sqlx-core/src/executor.rs index 05020bb1..73e3ec63 100644 --- a/sqlx-core/src/executor.rs +++ b/sqlx-core/src/executor.rs @@ -20,7 +20,6 @@ use std::fmt::Debug; /// Implemented for the following: /// /// * [`&Pool`](super::pool::Pool) -/// * [`&mut PoolConnection`](super::pool::PoolConnection) /// * [`&mut Connection`](super::connection::Connection) /// pub trait Executor<'c>: Send + Debug + Sized {