# File lib/rspec/matchers/be_close.rb, line 12
    def be_close(expected, delta)
      RSpec.deprecate("be_close(#{expected}, #{delta})", "be_within(#{delta}).of(#{expected})")
      be_within(delta).of(expected)
    end