summaryrefslogtreecommitdiffstats
path: root/lib/fileutils.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-19 11:42:51 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-19 11:42:51 +0000
commit2a3bfca5f4a5e13ec96aa7eb717d261974843eb7 (patch)
tree92e87afcc0f6b5965bb4a8e01849e22ec891c141 /lib/fileutils.rb
parentb0e860978206e846d0458e950e9aeb32e73107c8 (diff)
downloadruby-2a3bfca5f4a5e13ec96aa7eb717d261974843eb7.tar.gz
ruby-2a3bfca5f4a5e13ec96aa7eb717d261974843eb7.tar.xz
ruby-2a3bfca5f4a5e13ec96aa7eb717d261974843eb7.zip
* lib/fileutils.rb (FileUtils::ln): ln documentation fix.
[ruby-core:06661] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/fileutils.rb')
-rw-r--r--lib/fileutils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fileutils.rb b/lib/fileutils.rb
index 2d9692c51..646cfe07d 100644
--- a/lib/fileutils.rb
+++ b/lib/fileutils.rb
@@ -274,7 +274,7 @@ module FileUtils
# <b><tt>ln(old, new, options = {})</tt></b>
#
# 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+.
#