Fix more spelling
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / HandlesDeploy.pm
index 83702f1..d5169a6 100644 (file)
@@ -3,7 +3,7 @@ use Moose::Role;
 
 # ABSTRACT: Interface for deploy methods
 
-requires 'preinstall';
+requires 'initialize';
 
 requires 'prepare_deploy';
 requires 'deploy';
@@ -23,9 +23,9 @@ requires 'downgrade_single_step';
 
 __END__
 
-=method preinstall
+=method initialize
 
- $dh->preinstall({
+ $dh->initialize({
    version      => 1,
    storage_type => 'SQLite'
  });
@@ -85,7 +85,7 @@ The version set uniquely identifies the migration.
 
 Takes two versions and a version set.  This basically is supposed to generate
 the needed C<SQL> to migrate down from the first version to the second version.
-The version set uniquely identifies the migration and should match it's
+The version set uniquely identifies the migration and should match its
 respective upgrade version set.
 
 =method upgrade_single_step