From 849a0c2330398a3e522ec7ef02211227f8e584de Mon Sep 17 00:00:00 2001 From: Olaf Alders Date: Fri, 29 Jan 2016 17:30:20 -0500 Subject: [PATCH] s/actualy/actually/ --- lib/DBIx/Class/Manual/Cookbook.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index d08022ae3..815fde432 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -1264,7 +1264,7 @@ example of the recommended way to use it: $genus->add_to_species({ name => 'troglodyte' }); $genus->wings(2); $genus->update; - $schema->txn_do($coderef2); # Can have a nested transaction. Only the outer will actualy commit + $schema->txn_do($coderef2); # Can have a nested transaction. Only the outer will actually commit return $genus->species; };