summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-17 11:23:16 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-17 11:23:16 +0000
commit61313ade46f71b783336b64049ad11459a208061 (patch)
tree3aa978a6f6653f338ea841f67defb314962779e4 /process.c
parentce34fce82bdb53717da13e5b03aebdb6af8aa84b (diff)
[DOC]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/process.c b/process.c
index 2ee9f4a04e..273f703a26 100644
--- a/process.c
+++ b/process.c
@@ -6678,12 +6678,12 @@ rb_proc_times(VALUE obj)
* +:POSIX_GETTIMEOFDAY_CLOCK_REALTIME+ when clock_gettime() is not available.
*
* Emulations for +:CLOCK_REALTIME+:
- * [:POSIX_GETTIMEOFDAY_CLOCK_REALTIME] Use gettimeofday(). The precision is 1 micro second.
- * [:POSIX_TIME_CLOCK_REALTIME] Use time(). The precision is 1 second.
+ * [:POSIX_GETTIMEOFDAY_CLOCK_REALTIME] Use gettimeofday(). The resolution is 1 micro second.
+ * [:POSIX_TIME_CLOCK_REALTIME] Use time(). The resolution is 1 second.
*
* Emulations for +:CLOCK_MONOTONIC+:
* [:MACH_ABSOLUTE_TIME_CLOCK_MONOTONIC] Use mach_absolute_time(), available on Darwin.
- * The precision is CPU dependent.
+ * The resolution is CPU dependent.
*
* If the given +clock_id+ is not supported, Errno::EINVAL is raised.
*