projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
7a83080
)
fix typo in variable name
Matt S Trout [Sat, 2 Jan 2010 00:41:12 +0000 (
00:41
+0000)]
lib/DBIx/Class.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class.pm
b/lib/DBIx/Class.pm
index
cbe5988
..
3a8fa69
100644
(file)
--- a/
lib/DBIx/Class.pm
+++ b/
lib/DBIx/Class.pm
@@
-116,7
+116,7
@@
Then you can use these classes in your application's code:
# Output all artists names
# $artist here is a DBIx::Class::Row, which has accessors
# for all its columns. Rows are also subclasses of your Result class.
- foreach $artist (@artists) {
+ foreach $artist (@all_artists) {
print $artist->name, "\n";
}