From: Mike Wisener Date: Tue, 30 Sep 2014 03:58:59 +0000 (-0400) Subject: Clarify load_namespaces call -- more than one call can be made X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d71867efa474475d9d60b7aea97c99b23ce154bf;p=dbsrgits%2FDBIx-Class-Historic.git Clarify load_namespaces call -- more than one call can be made --- diff --git a/AUTHORS b/AUTHORS index 1264ab2..4088db9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -212,6 +212,7 @@ willert: Sebastian Willert wintermute: Toby Corkindale wreis: Wallace Reis xenoterracide: Caleb Cushing +xmikew: Mike Wisener yrlnry: Mark Jason Dominus zamolxes: Bogdan Lucaciu Zefram: Andrew Main diff --git a/Changes b/Changes index 19841b8..a9db781 100644 --- 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 diff --git a/lib/DBIx/Class/Manual/FAQ.pod b/lib/DBIx/Class/Manual/FAQ.pod index 4a78e24..92ac0f7 100644 --- a/lib/DBIx/Class/Manual/FAQ.pod +++ b/lib/DBIx/Class/Manual/FAQ.pod @@ -82,8 +82,8 @@ L call. Eg: __PACKAGE__->table('mydb.mytablename'); -And load all the Result classes for both / all databases using one -L call. +And load all the Result classes for both / all databases by calling +L. =item .. use DBIx::Class across PostgreSQL/DB2/Oracle schemas?