summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2020-12-19 15:41:56 -0500
committerJames E Keenan <jkeenan@cpan.org>2020-12-19 15:41:56 -0500
commit798ebbce5d557ead8dba98f8fa407c8865349c11 (patch)
tree48cd0061bba9c97fd67e52c0fcdc614e4d9e6dc8
parent4f61b328f5219abf2183c2c6b68bc9aaadf683cd (diff)
downloadperl-798ebbce5d557ead8dba98f8fa407c8865349c11.tar.gz
ext/POSIX/t/waitpid.t: Correct one typo
-rw-r--r--ext/POSIX/t/waitpid.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/t/waitpid.t b/ext/POSIX/t/waitpid.t
index 7e821fd825..d47382bf57 100644
--- a/ext/POSIX/t/waitpid.t
+++ b/ext/POSIX/t/waitpid.t
@@ -61,7 +61,7 @@ if ($child_pid) {
$state = NEG1_REQUIRED;
is(WIFEXITED(${^CHILD_ERROR_NATIVE}), 1, 'child exited cleanly');
is(WEXITSTATUS(${^CHILD_ERROR_NATIVE}), 0,
- 'child exited with 0 (the retun value of its sleep(3) call)');
+ 'child exited with 0 (the return value of its sleep(3) call)');
}
}