diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-22 14:23:33 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-22 14:23:33 +0000 |
commit | 12d2c8ba41edb5a02a7471e39d67ece2894492d8 (patch) | |
tree | 5b2e87ac380efcb2141c4fab97e86c25c7214799 /load.c | |
parent | 624d07b0e4257a5261558a154eddd464d85e6174 (diff) | |
download | ruby-12d2c8ba41edb5a02a7471e39d67ece2894492d8.tar.gz |
stripped trailing spaces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'load.c')
-rw-r--r-- | load.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -341,7 +341,7 @@ rb_load_protect(VALUE fname, int wrap, int *state) /* * call-seq: * load(filename, wrap=false) => true - * + * * Loads and executes the Ruby * program in the file _filename_. If the filename does not * resolve to an absolute path, the file is searched for in the library @@ -406,7 +406,7 @@ load_unlock(const char *ftptr, int done) /* * call-seq: * require(string) => true or false - * + * * Ruby tries to load the library named _string_, returning * +true+ if successful. If the filename does not resolve to * an absolute path, it will be searched for in the directories listed @@ -420,7 +420,7 @@ load_unlock(const char *ftptr, int done) * appears in <code>$"</code>. However, the file name is not converted * to an absolute path, so that ``<code>require 'a';require * './a'</code>'' will load <code>a.rb</code> twice. - * + * * require "my-library.rb" * require "db-driver" */ @@ -638,11 +638,11 @@ ruby_init_ext(const char *name, void (*init)(void)) /* * call-seq: * mod.autoload(name, filename) => nil - * + * * Registers _filename_ to be loaded (using <code>Kernel::require</code>) * the first time that _module_ (which may be a <code>String</code> or * a symbol) is accessed in the namespace of _mod_. - * + * * module A * end * A.autoload(:B, "b") @@ -672,11 +672,11 @@ rb_mod_autoload_p(VALUE mod, VALUE sym) /* * call-seq: * autoload(module, filename) => nil - * + * * Registers _filename_ to be loaded (using <code>Kernel::require</code>) * the first time that _module_ (which may be a <code>String</code> or * a symbol) is accessed. - * + * * autoload(:MyModule, "/usr/local/lib/modules/my_module.rb") */ |