Changed txn_do docs/Cookbook example to use closures, and made their content more...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / UUIDMaker.pm
index b9c196c..f492801 100644 (file)
@@ -1,5 +1,8 @@
 package DBIx::Class::UUIDMaker;
 
+use strict;
+use warnings;
+
 sub new {
     return bless {}, shift;
 };
@@ -22,7 +25,7 @@ DBIx::Class::UUIDMaker - UUID wrapper module
 
   sub as_string {
     my $uuid;
-    ...magic encantations...
+    ...magic incantations...
     return $uuid;
   };