Skip to content

Commit 0fbb216

Browse files
committed
refactor(postgres): Remove two more deprecated cfg flag uses (from docstrings)
Signed-off-by: Joshua Potts <[email protected]>
1 parent 406ac19 commit 0fbb216

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sqlx-core/src/acquire.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use std::ops::{Deref, DerefMut};
1515
///
1616
/// ```rust
1717
/// # use sqlx::{Acquire, postgres::Postgres, error::BoxDynError};
18-
/// # #[cfg(any(postgres_9_6, postgres_15))]
1918
/// async fn run_query<'a, A>(conn: A) -> Result<(), BoxDynError>
2019
/// where
2120
/// A: Acquire<'a, Database = Postgres>,
@@ -35,7 +34,6 @@ use std::ops::{Deref, DerefMut};
3534
/// ```rust
3635
/// # use std::future::Future;
3736
/// # use sqlx::{Acquire, postgres::Postgres, error::BoxDynError};
38-
/// # #[cfg(any(postgres_9_6, postgres_15))]
3937
/// fn run_query<'a, 'c, A>(conn: A) -> impl Future<Output = Result<(), BoxDynError>> + Send + 'a
4038
/// where
4139
/// A: Acquire<'c, Database = Postgres> + Send + 'a,

0 commit comments

Comments
 (0)