From 8344fa5eff92516fe15eb4152aea883fd5da5e1f Mon Sep 17 00:00:00 2001 From: yugui Date: Sun, 21 Jun 2009 09:17:12 +0000 Subject: merges r23724 and r23725 from trunk into ruby_1_9_1. -- * load.c (rb_f_require): RDoc updated. a patch from Run Paint Run Run in [ruby-core:23833]. -- * load.c (rb_mod_autoload): ditto. [ruby-core:23835] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23795 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- load.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'load.c') diff --git a/load.c b/load.c index 8e533771f..516e3b8bf 100644 --- a/load.c +++ b/load.c @@ -415,11 +415,11 @@ load_unlock(const char *ftptr, int done) * the current platform, Ruby loads the shared library as a Ruby * extension. Otherwise, Ruby tries adding ``.rb'', ``.so'', and so on * to the name. The name of the loaded feature is added to the array in - * $". A feature will not be loaded if it's name already - * appears in $". However, the file name is not converted - * to an absolute path, so that ``require 'a';require - * './a''' will load a.rb twice. - * + * $". A feature will not be loaded if its name already + * appears in $". The file name is converted to an absolute + * path, so ``require 'a'; require './a''' will not load + * a.rb twice. + * * require "my-library.rb" * require "db-driver" */ @@ -627,8 +627,8 @@ 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 * a symbol) is accessed in the namespace of _mod_. -- cgit