aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-30 02:37:31 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-30 02:37:31 +0000
commitb5a000bf4cb583df93a13d45bcc09301127fa1da (patch)
tree0ac5960e63500c27af2beb94bb7a3b7ace229268 /file.c
parent6fda1316170b6fe142b12ad9ea12c7f9f63bf845 (diff)
downloadruby-b5a000bf4cb583df93a13d45bcc09301127fa1da.tar.gz
* file.c: [DOC] document File.join returns a string.
Contributed by @dapplebeforedawn. [fix GH-646] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index a2d6681700..196efbbba3 100644
--- a/file.c
+++ b/file.c
@@ -4291,7 +4291,7 @@ rb_file_join(VALUE ary, VALUE sep)
/*
* call-seq:
- * File.join(string, ...) -> path
+ * File.join(string, ...) -> string
*
* Returns a new string formed by joining the strings using
* <code>File::SEPARATOR</code>.