diff options
author | Pierrick Charron <pierrick@php.net> | 2011-04-03 21:46:52 +0000 |
---|---|---|
committer | Pierrick Charron <pierrick@php.net> | 2011-04-03 21:46:52 +0000 |
commit | e8486cc37415a6db5f949d687a2f62e7f3bd3235 (patch) | |
tree | 509c0a333a750cd362633a04190cfe1ca2329e28 /ext/pcntl | |
parent | 47012ccd8f7f091d234693ed23e072da5e9a8328 (diff) | |
download | php-git-e8486cc37415a6db5f949d687a2f62e7f3bd3235.tar.gz |
Fix common typos in the source code (Reported in Bug #54065)
# External libraries were excluded
# Thanks eitan at eitanadler dot com for the first patch :)
Diffstat (limited to 'ext/pcntl')
-rw-r--r-- | ext/pcntl/tests/pcntl_fork_basic.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pcntl/tests/pcntl_fork_basic.phpt b/ext/pcntl/tests/pcntl_fork_basic.phpt index 82759ba327..b1e2a9bf68 100644 --- a/ext/pcntl/tests/pcntl_fork_basic.phpt +++ b/ext/pcntl/tests/pcntl_fork_basic.phpt @@ -11,7 +11,7 @@ Francesco Fullone ff@ideato.it ?> --FILE-- <?php -echo "*** Test by calling method or function with its expected arguments, first print the child PID and the the father ***\n"; +echo "*** Test by calling method or function with its expected arguments, first print the child PID and the father ***\n"; $pid = pcntl_fork(); if ($pid > 0) { @@ -22,6 +22,6 @@ if ($pid > 0) { } ?> --EXPECTF-- -*** Test by calling method or function with its expected arguments, first print the child PID and the the father *** +*** Test by calling method or function with its expected arguments, first print the child PID and the father *** int(0) int(%d) |