summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-04-18 17:53:05 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-04-18 17:53:05 +0900
commitb0666d64176457786c854c12c79f7beae392bee0 (patch)
tree22bf5c3d9526cca594732403d028507f21bcddb4 /file.c
parentc69bdcf80c1711dc3bff0037333393c844186a57 (diff)
downloadruby-b0666d64176457786c854c12c79f7beae392bee0.tar.gz
[DOC] Use consistent terms [Bug #18680]
Diffstat (limited to 'file.c')
-rw-r--r--file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/file.c b/file.c
index 5b7f96c6fe..76b2b779db 100644
--- a/file.c
+++ b/file.c
@@ -978,7 +978,7 @@ rb_stat_atime(VALUE self)
/*
* call-seq:
- * stat.mtime -> aTime
+ * stat.mtime -> time
*
* Returns the modification time of <i>stat</i>.
*
@@ -994,7 +994,7 @@ rb_stat_mtime(VALUE self)
/*
* call-seq:
- * stat.ctime -> aTime
+ * stat.ctime -> time
*
* Returns the change time for <i>stat</i> (that is, the time
* directory information about the file was changed, not the file
@@ -1015,7 +1015,7 @@ rb_stat_ctime(VALUE self)
#if defined(HAVE_STAT_BIRTHTIME)
/*
* call-seq:
- * stat.birthtime -> aTime
+ * stat.birthtime -> time
*
* Returns the birth time for <i>stat</i>.
*