diff options
author | Benoit Daloze <[email protected]> | 2019-07-13 15:23:49 +0200 |
---|---|---|
committer | Benoit Daloze <[email protected]> | 2019-07-13 15:23:49 +0200 |
commit | 4a935bc6f66fda448fb430c7627a2f175dcd0650 (patch) | |
tree | 29d5fbd8a3b7122286910e7383f71218e0bc090e /load.c | |
parent | b0f6f33094606e50296cb525184708454420e860 (diff) |
Document $LOAD_PATH.resolve_feature_path in globals.rdoc
* RDoc does not seem to support documenting singleton object methods,
and making $LOAD_PATH a class as a workaround is too weird.
Diffstat (limited to 'load.c')
-rw-r--r-- | load.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -945,14 +945,13 @@ load_ext(VALUE path) return (VALUE)dln_load(RSTRING_PTR(path)); } -/* Method is documented in vm.c */ - static int no_feature_p(const char *feature, const char *ext, int rb, int expanded, const char **fn) { return 0; } +// Documented in doc/globals.rdoc VALUE rb_resolve_feature_path(VALUE klass, VALUE fname) { |