diff options
author | stomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-12-14 10:24:38 +0000 |
---|---|---|
committer | stomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-12-14 10:24:38 +0000 |
commit | 09004db450f9e6f946efed802632b1b648b5265e (patch) | |
tree | 3fa866ef0cf2ffff9a7a3a6b769bb6ad7771be87 /process.c | |
parent | d31e8476888e5c7fc1eadc9b53988d42f471e938 (diff) | |
download | ruby-09004db450f9e6f946efed802632b1b648b5265e.tar.gz |
process.c: [DOC] fix grammar and double negative
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -476,13 +476,13 @@ rb_last_status_get(void) * call-seq: * Process.last_status -> Process::Status or nil * - * Return the status of the last executed child process in the + * Returns the status of the last executed child process in the * current thread. * * Process.wait Process.spawn("ruby", "-e", "exit 13") * Process.last_status #=> #<Process::Status: pid 4825 exit 13> * - * If no child process has never been executed in the current + * If no child process has ever been executed in the current * thread, this returns +nil+. * * Process.last_status #=> nil |