From: Run Paint Run Run Date: 2009-06-13T11:01:42+09:00 Subject: [ruby-core:23835] [Bug #1622] [PATCH] Module.autoload Documentation Fix Bug #1622: [PATCH] Module.autoload Documentation Fix http://redmine.ruby-lang.org/issues/show/1622 Author: Run Paint Run Run Status: Open, Priority: Low Category: DOC ruby -v: ruby 1.9.2dev (2009-06-01 trunk 23614) [i686-linux] The documentation for Module.autoload uses _name_ and _module_ to refer to the same variable. This patch standardizes on _module_. diff --git a/load.c b/load.c index 5f9d4f2..7ee7443 100644 --- a/load.c +++ b/load.c @@ -637,7 +637,7 @@ ruby_init_ext(const char *name, void (*init)(void)) /* * call-seq: - * mod.autoload(name, filename) => nil + * mod.autoload(module, filename) => nil * * Registers _filename_ to be loaded (using Kernel::require) * the first time that _module_ (which may be a String or ---------------------------------------- http://redmine.ruby-lang.org