lib/code/object/html.rb in code-ruby-0.15.8 vs lib/code/object/html.rb in code-ruby-0.15.9
- old
+ new
@@ -11,13 +11,13 @@
operator = args.fetch(:operator, nil)
arguments = args.fetch(:arguments, List.new)
case operator.to_s
when "link_to"
- sig(args) { [String.maybe, String.maybe] }
+ sig(args) { [Object.maybe, Object.maybe] }
code_link_to(*arguments.raw)
when "escape"
- sig(args) { String.maybe }
+ sig(args) { Object.maybe }
code_escape(*arguments.raw)
else
super
end
end