aboutsummaryrefslogtreecommitdiff
path: root/lib/std/child_process.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-09-11 20:26:53 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-09-11 20:26:53 -0700
commitab3ac291ac08435f7aba1fc8a53fe0a0290cc1e1 (patch)
tree5f6dd2a4a7dc97a72e3652fff09399ed1cba8b83 /lib/std/child_process.zig
parent37cdb5dbf90acd61584bae4a6661d0a6f9b54295 (diff)
parentc97d64b677eb891144fb356e1f4b9011c60cc0e2 (diff)
downloadzig-ab3ac291ac08435f7aba1fc8a53fe0a0290cc1e1.tar.gz
zig-ab3ac291ac08435f7aba1fc8a53fe0a0290cc1e1.zip
Merge remote-tracking branch 'origin/master' into llvm15
Diffstat (limited to 'lib/std/child_process.zig')
-rw-r--r--lib/std/child_process.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/child_process.zig b/lib/std/child_process.zig
index fb521eb784..f1604bb86c 100644
--- a/lib/std/child_process.zig
+++ b/lib/std/child_process.zig
@@ -508,7 +508,7 @@ pub const ChildProcess = struct {
// it, that's the error code returned by the child process.
_ = std.os.poll(&fd, 0) catch unreachable;
- // According to eventfd(2) the descriptro is readable if the counter
+ // According to eventfd(2) the descriptor is readable if the counter
// has a value greater than 0
if ((fd[0].revents & std.os.POLL.IN) != 0) {
const err_int = try readIntFd(err_pipe[0]);