binarylogic / searchlogic

Searchlogic provides object based searching, common named scopes, and other useful tools.
http://rdoc.info/projects/binarylogic/searchlogic
MIT License
1.4k stars 133 forks source link

readme documentation wrong or confusing #151

Open julescopeland opened 12 years ago

julescopeland commented 12 years ago

in the 'Combine scopes with "OR"' section it says:

User.id_or_age_lt_or_username_or_first_name_begins_with(10)
=> "id < 10 OR age < 10 OR username LIKE 'ben%' OR first_name like'ben%'"

Am I missing something fundamental? Where does the term 'ben' come into it? It doesn't even follow from the example above.