fixed View's doc | added me to contributors list
Wallace Reis [Wed, 11 Mar 2009 00:56:06 +0000 (00:56 +0000)]
lib/DBIx/Class.pm
lib/DBIx/Class/ResultSource/View.pm

index 638d07c..bb73581 100644 (file)
@@ -317,6 +317,8 @@ wdh: Will Hawes
 
 willert: Sebastian Willert <willert@cpan.org>
 
+wreis: Wallace Reis <wreis@cpan.org>
+
 zamolxes: Bogdan Lucaciu <bogdan@wiz.ro>
 
 norbi: Norbert Buchmuller <norbi@nix.hu>
index f1ab5f1..0bcb0fc 100644 (file)
@@ -46,7 +46,7 @@ L<DBIx::Class::Schema/deploy> unless you set L</is_virtual> to true.
 Deploying the view does B<not> translate it between different database
 syntaxes, so be careful what you write in your view SQL.
 
-Virtual views (L</is_virtual> unset or false), are assumed to not
+Virtual views (L</is_virtual> true), are assumed to not
 exist in your database as a real view. The L</view_definition> in this
 case replaces the view name in a FROM clause in a subselect.
 
@@ -54,13 +54,13 @@ case replaces the view name in a FROM clause in a subselect.
 
 =over
 
-=item is_virtual set to true
+=item is_virtual set to false
 
   $schema->resultset('Year2000CDs')->all();
 
   SELECT cdid, artist, title FROM year2000cds me
 
-=item is_virtual set to false
+=item is_virtual set to true
 
   $schema->resultset('Year2000CDs')->all();
 
@@ -115,6 +115,8 @@ Guillermo Roditi E<lt>groditi@cpan.orgE<gt>
 
 Jess Robinson <castaway@desert-island.me.uk>
 
+Wallace Reis <wreis@cpan.org>
+
 =head1 LICENSE
 
 You may distribute this code under the same terms as Perl itself.