X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FManual%2FFeatures.pod;h=a28bb355808a75027376af884c8d6a4dc46f28fe;hb=4f90e9f81ee3fc1ed1a145c15a1676674c0c54b2;hp=8ae1fe6aa4b10f995f861c50e1572db9a0016f42;hpb=4d1e63f4234e8a70a5a1f618ad7d8f3facd09142;p=dbsrgits%2FDBIx-Class.git diff --git a/lib/DBIx/Class/Manual/Features.pod b/lib/DBIx/Class/Manual/Features.pod index 8ae1fe6..a28bb35 100644 --- a/lib/DBIx/Class/Manual/Features.pod +++ b/lib/DBIx/Class/Manual/Features.pod @@ -254,11 +254,11 @@ Create a DBIx::Class schema from your database. my $schema = Frew::Schema->connect( $dsn, $user, $pass ); -See L and L. +See L and L. =head2 Populate -Made for inserting lots of rows very quicky into database +Made for inserting lots of rows very quickly into database $schema->populate([ Users => [qw( username password )], @@ -274,7 +274,7 @@ I use populate L to export =head2 Multicreate -Create an object and it's related objects all at once +Create an object and its related objects all at once $schema->resultset('Author')->create({ name => 'Stephen King', @@ -605,7 +605,7 @@ L =over 1 -=item Careful, get_column can basicaly mean B things +=item Careful, get_column can basically mean B things =item private in which case you should use an accessor