lib/danica/equation.rb in danica-2.6.4 vs lib/danica/equation.rb in danica-2.7.1

- old
+ new

@@ -12,11 +12,11 @@ def create(*variables, &block) build(*variables, &block).new end end - def to(format) - "#{left.to(format)} = #{right.to(format)}" + def to(*args) + "#{left.to(*args)} = #{right.to(*args)}" end end end