From a22b40afb40ecb02659a42c192055a6f78afffc8 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 22 Feb 2009 14:23:33 +0000 Subject: stripped trailing spaces. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22552 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 5f72d5510..5f9d4f229 100644 --- a/load.c +++ b/load.c @@ -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 $". However, the file name is not converted * to an absolute path, so that ``require 'a';require * './a''' will load a.rb 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 Kernel::require) * the first time that _module_ (which may be a String 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 Kernel::require) * the first time that _module_ (which may be a String or * a symbol) is accessed. - * + * * autoload(:MyModule, "/usr/local/lib/modules/my_module.rb") */ -- cgit