Update ResultSet.pm ghpr/applied/as_8f3c1445
Ben Hutton [Fri, 8 Aug 2014 12:55:03 +0000 (13:55 +0100)]
Call me pedantic, but I think moving the statment to a new line makes it more prominant. I may have seen it before heading to irc to ask why it's broken. Yes I should have read the section fully, but I didn't.

Also made the two statements use the same terminiolgy to be consistent and add context.

lib/DBIx/Class/ResultSet.pm

index cdbbd6c..735066a 100644 (file)
@@ -4156,7 +4156,7 @@ names:
 
 B<NOTE:> You will almost always need a corresponding L</as> attribute when you
 use L</select>, to instruct DBIx::Class how to store the result of the column.
-Also note that the L</as> attribute has nothing to do with the SQL-side 'AS'
+Also note that the L</as> attribute has nothing to do with the SQL-side C<AS>
 identifier aliasing. You can however alias a function, so you can use it in
 e.g. an C<ORDER BY> clause. This is done via the C<-as> B<select function
 attribute> supplied as shown in the example above.
@@ -4189,8 +4189,10 @@ Indicates DBIC-side names for object inflation. That is L</as> indicates the
 slot name in which the column value will be stored within the
 L<Row|DBIx::Class::Row> object. The value will then be accessible via this
 identifier by the C<get_column> method (or via the object accessor B<if one
-with the same name already exists>) as shown below. The L</as> attribute has
-B<nothing to do> with the SQL-side C<AS>. See L</select> for details.
+with the same name already exists>) as shown below.
+
+The L</as> attribute hasB<nothing to do> with the SQL-side identifier
+aliasing C<AS>. See L</select> for details.
 
   $rs = $schema->resultset('Employee')->search(undef, {
     select => [