summaryrefslogtreecommitdiff
path: root/lib/rdoc/ri/paths.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rdoc/ri/paths.rb')
-rw-r--r--lib/rdoc/ri/paths.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rdoc/ri/paths.rb b/lib/rdoc/ri/paths.rb
index df12045203..9b338d7ad8 100644
--- a/lib/rdoc/ri/paths.rb
+++ b/lib/rdoc/ri/paths.rb
@@ -26,7 +26,7 @@ module RDoc::RI::Paths
# true
# :site:: Where ri for installed libraries are stored. Yielded when
# +site+ is true. Normally no ri data is stored here.
- # :home:: ~/.ri. Yielded when +home+ is true.
+ # :home:: ~/.rdoc. Yielded when +home+ is true.
# :gem:: ri data for an installed gem. Yielded when +gems+ is true.
# :extra:: ri data directory from the command line. Yielded for each
# entry in +extra_dirs+
@@ -38,7 +38,7 @@ module RDoc::RI::Paths
yield SYSDIR, :system if system
yield SITEDIR, :site if site
- yield HOMEDIR, :home if home
+ yield HOMEDIR, :home if home and HOMEDIR
gemdirs.each do |dir|
yield dir, :gem