From: Justin Guenther <jguenther@cpan.org>
Date: Fri, 24 Mar 2006 20:58:12 +0000 (+0000)
Subject: reworded result -> row
X-Git-Tag: v0.06000~13
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8e23eaf20446bb9c6cabbc772b4cbe879de5766c;p=dbsrgits%2FDBIx-Class.git

reworded result -> row
---

diff --git a/lib/DBIx/Class/Cursor.pm b/lib/DBIx/Class/Cursor.pm
index 2edf6f6..065e195 100644
--- a/lib/DBIx/Class/Cursor.pm
+++ b/lib/DBIx/Class/Cursor.pm
@@ -42,7 +42,7 @@ sub new {
 
 =back
 
-Virtual method. Advances the cursor to the next result.
+Virtual method. Advances the cursor to the next row.
 
 =cut
 
@@ -66,7 +66,7 @@ sub reset {
 
 =back
 
-Virtual method. Returns all results in the L<DBIx::Class::ResultSet>.
+Virtual method. Returns all rows in the L<DBIx::Class::ResultSet>.
 
 =cut
 
diff --git a/lib/DBIx/Class/Storage/DBI/Cursor.pm b/lib/DBIx/Class/Storage/DBI/Cursor.pm
index b339506..1f277e2 100644
--- a/lib/DBIx/Class/Storage/DBI/Cursor.pm
+++ b/lib/DBIx/Class/Storage/DBI/Cursor.pm
@@ -57,7 +57,7 @@ sub new {
 
 =back
 
-Advances the cursor to the next result and returns it.
+Advances the cursor to the next row and returns it.
 
 =cut
 
@@ -93,7 +93,7 @@ sub next {
 
 =back
 
-Returns all results in the L<DBIx::Class::ResultSet>.
+Returns all rows in the L<DBIx::Class::ResultSet>.
 
 =cut