* ext/psych/lib/psych/visitors/yaml_tree.rb: fix syntax error.

Thanks @spastorino! [ruby-core:55011]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40776 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tenderlove 2013-05-15 20:48:15 +00:00
parent e213a7228f
commit a1cc022e79
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu May 16 05:47:18 2013 Aaron Patterson <aaron@tenderlovemaking.com>
* ext/psych/lib/psych/visitors/yaml_tree.rb: fix syntax error.
Thanks @spastorino! [ruby-core:55011]
Thu May 16 03:05:45 2013 Koichi Sasada <ko1@atdot.net>
* gc.c (rb_node_newnode): use newobj_of() instead of rb_newobj().

View File

@ -51,7 +51,7 @@ module Psych
return super if emitter && ss && options
if $VERBOSE
warn "This API is deprecated, please pass an emitter, scalar scanner, and options or call #{class}.create() (#{caller.first})"
warn "This API is deprecated, please pass an emitter, scalar scanner, and options or call #{self}.create() (#{caller.first})"
end
create emitter, ss
end