changes in 0.05 dist that mst forgot to commit
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Relationship / Base.pm
index e4d7488..ddc11b5 100644 (file)
@@ -51,7 +51,7 @@ command immediately before C<JOIN>.
 An arrayref containing a list of accessors in the foreign class to proxy in
 the main class. If, for example, you do the following:
   
-  __PACKAGE__->might_have(bar => 'Bar', undef, { proxy => qw[/ margle /] });
+  __PACKAGE__->might_have(bar => 'Bar', undef, { proxy => [ qw/margle/ ] });
   
 Then, assuming Bar has an accessor named margle, you can do: