Get rid of missing parentheses warning.

This commit is contained in:
Jari Bakken 2010-09-28 18:57:05 +02:00 committed by Kyle Banker
parent 9d2f3fbc27
commit 112870b537
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ module BSON
def reject(&block)
clone = self.clone
return clone unless block_given?
clone.delete_if &block
clone.delete_if(&block)
end
def clear