1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

fix typo in eventually matcher doc

This commit is contained in:
Wesley Beary 2009-07-14 17:33:03 -07:00
parent a6ec973792
commit 21cd1bb796

View file

@ -68,7 +68,7 @@ module Spec
#
# lambda { do_something_eventually_returning_true }.should eventually {|expected| expected.should be_true }
#
# lambda { do_something_eventually_returning_false }.should eventually {|expected| expected.should_not be_true }
# lambda { do_something_eventually_returning_false }.should_not eventually {|expected| expected.should_not be_true }
def eventually(&block)
Matchers::Eventually.new(&block)
end