From c657737286d7deaaec670a38d5c1e42c705b5bf9 Mon Sep 17 00:00:00 2001 From: gsinclair Date: Wed, 31 Dec 2003 06:09:22 +0000 Subject: * lib/pathname.rb: Corrected small coding error. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5359 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 +++++- lib/pathname.rb | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index f317c49ed..fff425a25 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ -Wed Dec 31 11:20:34 2003 Gavin Sinclair +Wed Dec 31 15:05:00 2003 Gavin Sinclair + + * lib/pathname.rb: Corrected small coding error. + +Wed Dec 31 15:00:00 2003 Gavin Sinclair * lib/pathname.rb: Completed documentation. diff --git a/lib/pathname.rb b/lib/pathname.rb index 156a9de12..e664d6476 100644 --- a/lib/pathname.rb +++ b/lib/pathname.rb @@ -598,8 +598,8 @@ class Pathname # * File * # See File.chmod. Changes permissions. def chmod(mode) File.chmod(mode, @path) end - # See File.chmod. - def lchmod(mode) File.chmod(mode, @path) end + # See File.lchmod. + def lchmod(mode) File.lchmod(mode, @path) end # See File.chown. Change owner and group of file. def chown(owner, group) File.chown(owner, group, @path) end -- cgit