From 1471ff90a7332f2e377130ba28e5127711e6e8dc Mon Sep 17 00:00:00 2001 From: kazu Date: Thu, 29 Sep 2016 14:40:34 +0000 Subject: * lib/yaml/store.rb (YAML::Store#dump): use table argument instead of @table directly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56294 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/yaml/store.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/yaml') diff --git a/lib/yaml/store.rb b/lib/yaml/store.rb index 370e45f584..3c9b8817e4 100644 --- a/lib/yaml/store.rb +++ b/lib/yaml/store.rb @@ -61,7 +61,7 @@ class YAML::Store < PStore # :stopdoc: def dump(table) - @table.to_yaml(@opt) + table.to_yaml(@opt) end def load(content) -- cgit v1.2.3