From 1390cc57d77ed54e44efdde5aeeb60c4f7c9d524 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 30 Nov 2019 12:01:09 -0500 Subject: [PATCH] doc fix --- postgres/src/transaction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/src/transaction.rs b/postgres/src/transaction.rs index 17631c79..0e361e36 100644 --- a/postgres/src/transaction.rs +++ b/postgres/src/transaction.rs @@ -8,7 +8,7 @@ use tokio_postgres::{Error, Row, SimpleQueryMessage}; /// A representation of a PostgreSQL database transaction. /// /// Transactions will implicitly roll back by default when dropped. Use the `commit` method to commit the changes made -/// 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. pub struct Transaction<'a>(tokio_postgres::Transaction<'a>); impl<'a> Transaction<'a> {