Fix incorrect title in Transactions.pod
[dbsrgits/DBIx-Class-Manual-SQLHackers.git] / lib / DBIx / Class / Manual / SQLHackers / Transactions.pod
index 47aa800..ad1552a 100644 (file)
@@ -1,6 +1,6 @@
 =head1 NAME
 
-DBIx::Class::Manual::SQLHackers::DELETE - DBIx::Class for SQL Hackers - DELETE
+DBIx::Class::Manual::SQLHackers::Transactions - DBIx::Class for SQL Hackers - DELETE
 
 =over
 
@@ -27,7 +27,8 @@ DBIx::Class::Manual::SQLHackers::DELETE - DBIx::Class for SQL Hackers - DELETE
     UPDATE users SET username = 'fred' WHERE id = 1;
     COMMIT;
 
-To create a transaction, put all your changes inside a coderef, and pass it to the B<txn_do> method on the Schema object.
+To create a transaction, put all your changes inside a coderef, and pass it to the B<txn_do> method on the Schema object. Transactions can also be safely nested,
+in which case all but the top level transaction blocks become noops.
 
 =over