diff options
author | ktsj <ktsj@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-19 03:10:21 +0000 |
---|---|---|
committer | ktsj <ktsj@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-05-19 03:10:21 +0000 |
commit | edb98f8b910b00be16868b21116924cffad785b9 (patch) | |
tree | eb98e40557395aa10c68c9bba496b62ff11a9369 /file.c | |
parent | 67964f299b671c9b29257c7a62000bfbadb4c556 (diff) | |
download | bundler-edb98f8b910b00be16868b21116924cffad785b9.tar.gz |
fix typos. Patch by k_takata.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40825 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3722,7 +3722,7 @@ ruby_enc_find_basename(const char *name, long *baselen, long *alllen, rb_encodin * * Returns the last component of the filename given in <i>file_name</i>, * which can be formed using both <code>File::SEPARATOR</code> and - * <code>File::ALT_SEPARETOR</code> as the separator when + * <code>File::ALT_SEPARATOR</code> as the separator when * <code>File::ALT_SEPARATOR</code> is not <code>nil</code>. If * <i>suffix</i> is given and present at the end of <i>file_name</i>, * it is removed. @@ -3779,7 +3779,7 @@ rb_file_s_basename(int argc, VALUE *argv) * * Returns all components of the filename given in <i>file_name</i> * except the last one. The filename can be formed using both - * <code>File::SEPARATOR</code> and <code>File::ALT_SEPARETOR</code> as the + * <code>File::SEPARATOR</code> and <code>File::ALT_SEPARATOR</code> as the * separator when <code>File::ALT_SEPARATOR</code> is not <code>nil</code>. * * File.dirname("/home/gumby/work/ruby.rb") #=> "/home/gumby/work" |