diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2009-09-26 23:45:42 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2009-09-26 23:45:42 -0700 |
commit | 70467fb3e4611559138d016e61e0388ae1c52a56 (patch) | |
tree | 71975e8d71e151d3f21029944adb44c5b286a85e /lib | |
parent | a59a8c0fc75f6c0339facdd90302eb352e9d8ea6 (diff) | |
download | psych-70467fb3e4611559138d016e61e0388ae1c52a56.zip |
scalar supports anchors
Diffstat (limited to 'lib')
-rw-r--r-- | lib/psych/parser/handler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/psych/parser/handler.rb b/lib/psych/parser/handler.rb index a36e8fa..a0152e7 100644 --- a/lib/psych/parser/handler.rb +++ b/lib/psych/parser/handler.rb @@ -26,7 +26,7 @@ module Psych ### # Called when a scalar +value+ is found - def scalar tag, value + def scalar value, anchor = nil, tag = nil end ### |