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

index 30e856b..fb66f07 100644 (file)
@@ -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