From fcf60d39776acf018eb7d855778f66568eb6d615 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 29 Mar 2019 01:26:23 +0000 Subject: process.c: [DOC] fix markups [ci skip] * process.c (rb_f_spawn): fix markups as rdoc. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'process.c') diff --git a/process.c b/process.c index 68a3197909..6cba2dd72e 100644 --- a/process.c +++ b/process.c @@ -4594,13 +4594,14 @@ rb_f_system(int argc, VALUE *argv) * current directory: * :chdir => str * - * The 'cmdname, arg1, ...' form does not use the shell. However, - * on different OSes, different things are provided as built-in - * commands. An example of this is 'echo', which is a built-in - * on Windows, but is a normal program on Linux and Mac OS X. - * This means that `Process.spawn 'echo', '%Path%'` will display - * the contents of the `%Path%` environment variable on Windows, - * but `Process.spawn 'echo', '$PATH'` prints the literal '$PATH'. + * The 'cmdname, arg1, ...' form does not use the shell. + * However, on different OSes, different things are provided as + * built-in commands. An example of this is +'echo'+, which is a + * built-in on Windows, but is a normal program on Linux and Mac OS X. + * This means that Process.spawn 'echo', '%Path%' will + * display the contents of the %Path% environment variable + * on Windows, but Process.spawn 'echo', '$PATH' prints + * the literal $PATH. * * If a hash is given as +env+, the environment is * updated by +env+ before exec(2) in the child process. -- cgit v1.2.3