summaryrefslogtreecommitdiffstats
path: root/lib/finalize.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-07 06:59:46 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-07 06:59:46 +0000
commitf23f4f6e63b16d443855dde1fd19ed8c5a18960e (patch)
tree69ef1c65eafc080502ce7cb838a7d8a34904980e /lib/finalize.rb
parentb0f42632a2ced3c1249f06c7d09004009c5cd22f (diff)
downloadruby-f23f4f6e63b16d443855dde1fd19ed8c5a18960e.tar.gz
ruby-f23f4f6e63b16d443855dde1fd19ed8c5a18960e.tar.xz
ruby-f23f4f6e63b16d443855dde1fd19ed8c5a18960e.zip
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@929 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/finalize.rb')
-rw-r--r--lib/finalize.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/finalize.rb b/lib/finalize.rb
index 3cf79ff92..598569f52 100644
--- a/lib/finalize.rb
+++ b/lib/finalize.rb
@@ -32,7 +32,7 @@
# finalize all dependants connected by dependency R_*(obj, dependtant).
# finalize_by_dependant(dependant, method = :finalize)
# finalize the dependant connected by dependency R_method(*, dependtant).
-# fainalize_all_by_dependant(dependant)
+# finalize_all_by_dependant(dependant)
# finalize all dependants connected by dependency R_*(*, dependant).
# finalize_all
# finalize all dependency registered to the Finalizer.
@@ -138,7 +138,7 @@ module Finalizer
end
# finalize all dependants connected by dependency R_*(*, dependtant)
- def fainalize_all_by_dependant(dependant)
+ def finalize_all_by_dependant(dependant)
for id in @dependency.keys
finalize_all_dependency(id, dependant)
end
@@ -190,7 +190,7 @@ module Finalizer
module_function :finalize_dependency
module_function :finalize_all_dependency
module_function :finalize_by_dependant
- module_function :fainalize_all_by_dependant
+ module_function :finalize_all_by_dependant
module_function :finalize_all
module_function :safe