POD touchups
Rafael Kitover [Thu, 31 Dec 2009 20:08:30 +0000 (20:08 +0000)]
lib/DBIx/Class/Storage/DBI.pm
lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm

index 22477fe..7be2455 100644 (file)
@@ -2521,8 +2521,11 @@ sub lag_behind_master {
 L<DBIx::Class> uses L<DBIx::Class::Relationship> names as table aliases in
 queries.
 
-This hook is to allow specific C<Storage> drivers to change the way these
-aliases are named.
+This hook is to allow specific L<DBIx::Class::Storage> drivers to change the
+way these aliases are named.
+
+The default behavior is C<"$relname_$join_count" if $join_count > 1>, otherwise
+C<"$relname">.
 
 =cut
 
index 0f0c97b..3379ffc 100644 (file)
@@ -282,7 +282,7 @@ L<DBIx::Class> uses L<DBIx::Class::Relationship> names as table aliases in
 queries.
 
 Unfortunately, Oracle doesn't support identifiers over 30 chars in length, so
-if the L<DBIx::Class::Relationship> name is shortened here if necessary.
+the L<DBIx::Class::Relationship> name is shortened here if necessary.
 
 See L<DBIx::Class::Storage/"relname_to_table_alias">.