diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-05 09:27:21 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-05 09:27:21 +0000 |
commit | 32fd8835866d73bfd349bbb68db63cdebcda4ceb (patch) | |
tree | d10d7abe63a6dde453a96ee99953380b89a9e854 /lib | |
parent | 21aa7990efeedec6050936c63bfeb77664a06267 (diff) | |
download | ruby-32fd8835866d73bfd349bbb68db63cdebcda4ceb.tar.gz ruby-32fd8835866d73bfd349bbb68db63cdebcda4ceb.tar.xz ruby-32fd8835866d73bfd349bbb68db63cdebcda4ceb.zip |
* lib/shell/command-processor.rb (Shell::CommandProcessor::rmdir):
simple typo.
* string.c (str_new4): ptr may refer null_str.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/shell/command-processor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/shell/command-processor.rb b/lib/shell/command-processor.rb index 07879567f..876192e8b 100644 --- a/lib/shell/command-processor.rb +++ b/lib/shell/command-processor.rb @@ -205,7 +205,7 @@ class Shell # def rmdir(*path) for dir in path - Dir.rmdir(expand_path(path)) + Dir.rmdir(expand_path(dir)) end end |