summaryrefslogtreecommitdiffstats
path: root/load.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-22 14:23:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-22 14:23:33 +0000
commita22b40afb40ecb02659a42c192055a6f78afffc8 (patch)
tree5b2e87ac380efcb2141c4fab97e86c25c7214799 /load.c
parent94fd9db802721da2d906518c964dcfff044aac52 (diff)
downloadruby-a22b40afb40ecb02659a42c192055a6f78afffc8.tar.gz
ruby-a22b40afb40ecb02659a42c192055a6f78afffc8.tar.xz
ruby-a22b40afb40ecb02659a42c192055a6f78afffc8.zip
stripped trailing spaces.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'load.c')
-rw-r--r--load.c14
1 files changed, 7 insertions, 7 deletions
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 <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")
*/