summaryrefslogtreecommitdiff
path: root/lib/yaml
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-29 14:40:34 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-29 14:40:34 +0000
commitc249453c2a0217deb75ffb0803df118526e68a0c (patch)
tree8a8114cd0d51aaee814fc4e31ea291d043686995 /lib/yaml
parenta0a6fd7328dd1b22a38b406088752d631a398a7b (diff)
* 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
Diffstat (limited to 'lib/yaml')
-rw-r--r--lib/yaml/store.rb2
1 files changed, 1 insertions, 1 deletions
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)