Skip to content
This repository has been archived by the owner on Nov 17, 2018. It is now read-only.

Commit

Permalink
* fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Oct 24, 2008
1 parent a03575a commit ca41d2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rdoc 100755 → 100644
Expand Up @@ -11,9 +11,9 @@ of storing illimitate conditions in multiple step.

conditions = MultiConditions.new
# ... do some elaboration
conditions.append_condition(['active = ? AND query LIKE ?', true, '%foo']
conditions.append_condition(['active = ? AND query LIKE ?', true, '%foo'])
# ... other elaboration
conditions.append_condition(['name = ?', 'aname']
conditions.append_condition(['name = ?', 'aname'])

conditions.to_conditions
# => "active = true AND query LIKE '%foo' AND name = 'aname'"
Expand Down

0 comments on commit ca41d2b

Please sign in to comment.