summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-03-09 01:04:46 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-03-09 01:04:46 +0000
commit861219ce4a8c91a6d94c0d138c2f2bf2b3c2337e (patch)
treeaf62e80ee75bdbc02137390728ac6ebb2375231e /process.c
parent0d3f9dbfe1ab1696d1c9b1ef46c9da4af786e629 (diff)
fix doc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/process.c b/process.c
index 87db221df3..603b396963 100644
--- a/process.c
+++ b/process.c
@@ -740,11 +740,11 @@ waitall_each(rb_pid_t pid, int status, VALUE ary)
* $?.exitstatus #=> 99
*
* pid = fork { sleep 3 } #=> 27440
- * Time.now #=> Wed Apr 09 08:57:09 CDT 2003
+ * Time.now #=> 2008-03-08 19:56:16 +0900
* waitpid(pid, Process::WNOHANG) #=> nil
- * Time.now #=> Wed Apr 09 08:57:09 CDT 2003
+ * Time.now #=> 2008-03-08 19:56:16 +0900
* waitpid(pid, 0) #=> 27440
- * Time.now #=> Wed Apr 09 08:57:12 CDT 2003
+ * Time.now #=> 2008-03-08 19:56:19 +0900
*/
static VALUE
@@ -1834,11 +1834,11 @@ rb_f_spawn(int argc, VALUE *argv)
* thread calls <code>Thread#run</code>. Zero arguments causes +sleep+ to sleep
* forever.
*
- * Time.new #=> Wed Apr 09 08:56:32 CDT 2003
+ * Time.new #=> 2008-03-08 19:56:19 +0900
* sleep 1.2 #=> 1
- * Time.new #=> Wed Apr 09 08:56:33 CDT 2003
+ * Time.new #=> 2008-03-08 19:56:20 +0900
* sleep 1.9 #=> 2
- * Time.new #=> Wed Apr 09 08:56:35 CDT 2003
+ * Time.new #=> 2008-03-08 19:56:22 +0900
*/
static VALUE