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

Fix call-seq of Pathname#{,l}ch{mod,own} [ci skip]

This commit is contained in:
Kazuhiro NISHIYAMA 2020-02-15 12:13:09 +09:00
parent 2efb38e766
commit 79ad50d219
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A

View file

@ -554,7 +554,7 @@ path_mtime(VALUE self)
/* /*
* call-seq: * call-seq:
* pathname.chmod -> integer * pathname.chmod(mode_int) -> integer
* *
* Changes file permissions. * Changes file permissions.
* *
@ -568,7 +568,7 @@ path_chmod(VALUE self, VALUE mode)
/* /*
* call-seq: * call-seq:
* pathname.lchmod -> integer * pathname.lchmod(mode_int) -> integer
* *
* Same as Pathname.chmod, but does not follow symbolic links. * Same as Pathname.chmod, but does not follow symbolic links.
* *
@ -582,7 +582,7 @@ path_lchmod(VALUE self, VALUE mode)
/* /*
* call-seq: * call-seq:
* pathname.chown -> integer * pathname.chown(owner_int, group_int) -> integer
* *
* Change owner and group of the file. * Change owner and group of the file.
* *
@ -596,7 +596,7 @@ path_chown(VALUE self, VALUE owner, VALUE group)
/* /*
* call-seq: * call-seq:
* pathname.lchown -> integer * pathname.lchown(owner_int, group_int) -> integer
* *
* Same as Pathname.chown, but does not follow symbolic links. * Same as Pathname.chown, but does not follow symbolic links.
* *