make clear that search_like is only really there for Class::DBI users
Matt S Trout [Wed, 24 Dec 2008 17:26:35 +0000 (17:26 +0000)]
lib/DBIx/Class/ResultSet.pm

index 7ef6307..ca0712d 100644 (file)
@@ -737,8 +737,8 @@ sub get_column {
   $cd_rs = $rs->search_like({ title => '%blue%'});
 
 Performs a search, but uses C<LIKE> instead of C<=> as the condition. Note
-that this is simply a convenience method. You most likely want to use
-L</search> with specific operators.
+that this is simply a convenience method retained for ex Class::DBI users.
+You most likely want to use L</search> with specific operators.
 
 For more information, see L<DBIx::Class::Manual::Cookbook>.