From d120594dd52e65931c461399b5eccf30115dc384 Mon Sep 17 00:00:00 2001 From: ocean Date: Sun, 20 Nov 2005 01:23:41 +0000 Subject: * lib/fileutils.rb (FileUtils::ln): ln documentation fix. [ruby-core:06661] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9569 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/fileutils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/fileutils.rb b/lib/fileutils.rb index af36bbc73..697c30805 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -274,7 +274,7 @@ module FileUtils # ln(old, new, options = {}) # # Creates a hard link +new+ which points to +old+. - # If +new+ already exists and it is a directory, creates a symbolic link +new/old+. + # If +new+ already exists and it is a directory, creates a link +new/old+. # If +new+ already exists and it is not a directory, raises Errno::EEXIST. # But if :force option is set, overwrite +new+. # -- cgit