1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/pathname.rb: Corrected small coding error.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5359 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gsinclair 2003-12-31 06:09:22 +00:00
parent 29b7f2efca
commit bd45695886
2 changed files with 7 additions and 3 deletions

View file

@ -1,4 +1,8 @@
Wed Dec 31 11:20:34 2003 Gavin Sinclair <gsinclair@soyabean.com.au>
Wed Dec 31 15:05:00 2003 Gavin Sinclair <gsinclair@soyabean.com.au>
* lib/pathname.rb: Corrected small coding error.
Wed Dec 31 15:00:00 2003 Gavin Sinclair <gsinclair@soyabean.com.au>
* lib/pathname.rb: Completed documentation.

View file

@ -598,8 +598,8 @@ class Pathname # * File *
# See <tt>File.chmod</tt>. Changes permissions.
def chmod(mode) File.chmod(mode, @path) end
# See <tt>File.chmod</tt>.
def lchmod(mode) File.chmod(mode, @path) end
# See <tt>File.lchmod</tt>.
def lchmod(mode) File.lchmod(mode, @path) end
# See <tt>File.chown</tt>. Change owner and group of file.
def chown(owner, group) File.chown(owner, group, @path) end