aboutsummaryrefslogtreecommitdiffstats
path: root/process.c
diff options
context:
space:
mode:
authorstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-01-20 15:07:17 +0000
committerstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-01-20 15:07:17 +0000
commit1c53f86bd9701abd6c6d3a787541e5c408f5aef9 (patch)
treedd07d513ec4af8937c59c24ff3c2dad9a0692d06 /process.c
parentf284eb3d54df6d1bb754986f9f5272136ff73466 (diff)
downloadruby-1c53f86bd9701abd6c6d3a787541e5c408f5aef9.tar.gz
process.c: [DOC] small improvements
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66886 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 990380bf62..fbb737d9bd 100644
--- a/process.c
+++ b/process.c
@@ -4434,8 +4434,8 @@ rb_spawn(int argc, const VALUE *argv)
* Returns +nil+ if command execution fails.
* An error status is available in <code>$?</code>.
*
- * If <code>exception: true</code> argument is passed, the method
- * raises exception instead of +false+ or +nil+.
+ * If the <code>exception: true</code> argument is passed, the method
+ * raises an exception instead of returning +false+ or +nil+.
*
* The arguments are processed in the same way as
* for Kernel#spawn.
@@ -4452,7 +4452,7 @@ rb_spawn(int argc, const VALUE *argv)
* config.h main.rb
* *
*
- * Errors handling:
+ * Error handling:
*
* system("cat nonexistent.txt")
* # => false