We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef0b79f commit 1390cc5Copy full SHA for 1390cc5
postgres/src/transaction.rs
@@ -8,7 +8,7 @@ use tokio_postgres::{Error, Row, SimpleQueryMessage};
8
/// A representation of a PostgreSQL database transaction.
9
///
10
/// Transactions will implicitly roll back by default when dropped. Use the `commit` method to commit the changes made
11
-/// in the transaction. Transactions can be nested, with inner transactions implemented via safepoints.
+/// in the transaction. Transactions can be nested, with inner transactions implemented via savepoints.
12
pub struct Transaction<'a>(tokio_postgres::Transaction<'a>);
13
14
impl<'a> Transaction<'a> {
0 commit comments