do not include .git directory
[catagits/Reaction.git] / lib / Reaction / Manual / Clipboard.pod
index 1a9d3e7..eb92f50 100644 (file)
@@ -55,7 +55,7 @@ by Reaction to build the interface components. If you're not familiar with
 L<DBIx::Class> or don't have a schema handy, now is a good time to go through
 L<DBIx::Class::Manual::Intro> to get a schema set up.
 
-It is important that your Result-objects implement the meta-protocol of Moose
+It is important that your Result-objects implement the meta-protocol of Moose.
 One way to achive that is to do the following:
 
     package MyApp::Schema::Result::Bar;
@@ -64,7 +64,7 @@ One way to achive that is to do the following:
     
     has 'name' => (isa => 'Str', required => 1, rw => 1);
     
-    use namespace::clean -except => [ 'meta' ];
+    use namespace::autoclean;
     
     __PACKAGE__->load_components(qw(Core));
     __PACKAGE__->table('bar');