projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8903488
)
Typo in scalar ref example
Daniel Westermann-Clark [Fri, 28 Jul 2006 04:20:15 +0000 (
04:20
+0000)]
lib/DBIx/Class/Manual/FAQ.pod
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Manual/FAQ.pod
b/lib/DBIx/Class/Manual/FAQ.pod
index
30e856b
..
fb66f07
100644
(file)
--- a/
lib/DBIx/Class/Manual/FAQ.pod
+++ b/
lib/DBIx/Class/Manual/FAQ.pod
@@
-288,7
+288,7
@@
the rows at once.
To stop the column name from being quoted, you'll need to supply a
scalar reference:
- ->update({ somecolumn => '\othercolumn'})
+ ->update({ somecolumn => \'othercolumn' })
=back