Skip to content

Commit 1390cc5

Browse files
committed
doc fix
1 parent ef0b79f commit 1390cc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

postgres/src/transaction.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use tokio_postgres::{Error, Row, SimpleQueryMessage};
88
/// A representation of a PostgreSQL database transaction.
99
///
1010
/// 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.
11+
/// in the transaction. Transactions can be nested, with inner transactions implemented via savepoints.
1212
pub struct Transaction<'a>(tokio_postgres::Transaction<'a>);
1313

1414
impl<'a> Transaction<'a> {

0 commit comments

Comments
 (0)