summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-02-15 12:13:09 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-02-15 12:14:12 +0900
commit79ad50d2194f8d19ef9eb317fea83cfe284a2b08 (patch)
tree19ab940c464e11c7029c4368bfe59e935d340d78
parent2efb38e766b6fc304bb933d696c7500425d178a1 (diff)
Fix call-seq of Pathname#{,l}ch{mod,own} [ci skip]
-rw-r--r--ext/pathname/pathname.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/pathname/pathname.c b/ext/pathname/pathname.c
index 6b51b15f10..458846db27 100644
--- a/ext/pathname/pathname.c
+++ b/ext/pathname/pathname.c
@@ -554,7 +554,7 @@ path_mtime(VALUE self)
/*
* call-seq:
- * pathname.chmod -> integer
+ * pathname.chmod(mode_int) -> integer
*
* Changes file permissions.
*
@@ -568,7 +568,7 @@ path_chmod(VALUE self, VALUE mode)
/*
* call-seq:
- * pathname.lchmod -> integer
+ * pathname.lchmod(mode_int) -> integer
*
* Same as Pathname.chmod, but does not follow symbolic links.
*
@@ -582,7 +582,7 @@ path_lchmod(VALUE self, VALUE mode)
/*
* call-seq:
- * pathname.chown -> integer
+ * pathname.chown(owner_int, group_int) -> integer
*
* Change owner and group of the file.
*
@@ -596,7 +596,7 @@ path_chown(VALUE self, VALUE owner, VALUE group)
/*
* call-seq:
- * pathname.lchown -> integer
+ * pathname.lchown(owner_int, group_int) -> integer
*
* Same as Pathname.chown, but does not follow symbolic links.
*