Clarify load_namespaces call -- more than one call can be made
Mike Wisener [Tue, 30 Sep 2014 03:58:59 +0000 (23:58 -0400)]
AUTHORS
Changes
lib/DBIx/Class/Manual/FAQ.pod

diff --git a/AUTHORS b/AUTHORS
index 1264ab2..4088db9 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -212,6 +212,7 @@ willert: Sebastian Willert <willert@cpan.org>
 wintermute: Toby Corkindale <tjc@cpan.org>
 wreis: Wallace Reis <wreis@cpan.org>
 xenoterracide: Caleb Cushing <xenoterracide@gmail.com>
+xmikew: Mike Wisener <xmikew@32ths.com>
 yrlnry: Mark Jason Dominus <mjd@plover.com>
 zamolxes: Bogdan Lucaciu <bogdan@wiz.ro>
 Zefram: Andrew Main <zefram@fysh.org>
diff --git a/Changes b/Changes
index 19841b8..a9db781 100644 (file)
--- a/Changes
+++ b/Changes
@@ -28,7 +28,7 @@ Revision history for DBIx::Class
 
     * Misc
         - Remove warning about potential side effects of RT#79576 (scheduled)
-        - Various doc improvements (GH#70, GH#71, GH#72)
+        - Various doc improvements (GH#62, GH#70, GH#71, GH#72)
         - Skip tests in a way more intelligent and speedy manner when optional
           dependencies are missing
         - Make the Optional::Dependencies error messages cpanm-friendly
index 4a78e24..92ac0f7 100644 (file)
@@ -82,8 +82,8 @@ L<table|DBIx::Class::ResultSourceProxy::Table/table> call. Eg:
 
   __PACKAGE__->table('mydb.mytablename');
 
-And load all the Result classes for both / all databases using one
-L<DBIx::Class::Schema/load_namespaces> call.
+And load all the Result classes for both / all databases by calling
+L<DBIx::Class::Schema/load_namespaces>.
 
 =item .. use DBIx::Class across PostgreSQL/DB2/Oracle schemas?