diff options
-rw-r--r-- | lib/coderay/encoders/yaml.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/coderay/encoders/yaml.rb b/lib/coderay/encoders/yaml.rb index 1eb2523..d22cd19 100644 --- a/lib/coderay/encoders/yaml.rb +++ b/lib/coderay/encoders/yaml.rb @@ -20,7 +20,7 @@ module Encoders end def finish options - YAML.dump @data, @out + ::YAML.dump @data, @out super end |