Merge 'trunk' into 'DBIx-Class-current'
Brandon L. Black [Sun, 26 Mar 2006 14:50:39 +0000 (14:50 +0000)]
merged trunk rev 1365 (whitespace fixes) to -current branch

1  2 
lib/DBIx/Class.pm
lib/DBIx/Class/CDBICompat.pm
lib/DBIx/Class/Core.pm
lib/DBIx/Class/Relationship/Base.pm
lib/DBIx/Class/ResultSet.pm
lib/DBIx/Class/ResultSource.pm
lib/DBIx/Class/Row.pm
lib/DBIx/Class/Schema.pm
lib/DBIx/Class/Serialize/Storable.pm
lib/DBIx/Class/Storage/DBI.pm

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
@@@ -104,9 -103,9 +104,9 @@@ foreign table. This is currently not us
  
  =item default_value
  
 -Set this to the default value which will be inserted into a column
 -by the database. Can contain either a value or a function. This is
 +Set this to the default value which will be inserted into this column
 +by the database. Can contain either values or functions. This is
- currently not used by DBIx::Class. 
+ currently not used by DBIx::Class.
  
  =item sequence
  
Simple merge
@@@ -203,14 -200,14 +203,14 @@@ With no arguments, this method uses L<M
  the schema's namespace. Otherwise, this method loads the classes you specify
  (using L<use>), and registers them (using L</"register_class">).
  
 -It is possible to comment out classes with a leading C<#>, but note that perl
 -will think it's a mistake (trying to use a comment in a qw list), so you'll
 -need to add C<no warnings 'qw';> before your load_classes call.
 +It is possible to comment out classes with a leading '#', but note that perl
 +will think it's a mistake (trying to use a comment in a qw list) so you'll
 +need to add "no warnings 'qw';" before your load_classes call.
  
 -Example:
 +e.g.,
  
    My::Schema->load_classes(); # loads My::Schema::CD, My::Schema::Artist,
-                             # etc. (anything under the My::Schema namespace)
+                               # etc. (anything under the My::Schema namespace)
  
    # loads My::Schema::CD, My::Schema::Artist, Other::Namespace::Producer but
    # not Other::Namespace::LinerNotes nor My::Schema::Track
@@@ -677,9 -674,9 +677,9 @@@ sub populate 
  
  =head2 throw_exception
  
- =over 4 
+ =over 4
  
 -=item Arguments: $message
 +=item Arguments: ($message)
  
  =back
  
@@@ -21,10 -21,9 +21,10 @@@ sub STORABLE_thaw 
  
  __END__
  
- =head1 NAME 
+ =head1 NAME
  
      DBIx::Class::Serialize::Storable - hooks for Storable freeze/thaw
 +    (EXPERIMENTAL)
  
  =head1 SYNOPSIS
  
Simple merge