aboutsummaryrefslogtreecommitdiff
path: root/lib/std/child_process.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-09-11 23:12:50 -0400
committerGitHub <noreply@github.com>2022-09-11 23:12:50 -0400
commit349df40d14a3a66c1cbfd7ebacc4adac3ce29f46 (patch)
treea0b30a16aad0418f999ea5e9d677bb3568d87fba /lib/std/child_process.zig
parent60678f5bafdf22e274229f983d02069e13996426 (diff)
parent65bea514ae3860a5169d044d22ece7170c445bd3 (diff)
downloadzig-349df40d14a3a66c1cbfd7ebacc4adac3ce29f46.tar.gz
zig-349df40d14a3a66c1cbfd7ebacc4adac3ce29f46.zip
Merge pull request #12814 from ziglang/native-libc-integration
stage2: no condition on system libs to link native libc
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]);