diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-08-30 22:02:34 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-09-01 17:54:07 -0700 |
| commit | cca57042df374305390b5b0000be75ba6d24fb63 (patch) | |
| tree | 5ccbc45ec714b1696bed58688a9b4a801e83eac9 /lib/std/event/loop.zig | |
| parent | 3940a1be18a8312dec9d521c6e30ec4d34c44bd6 (diff) | |
| download | zig-cca57042df374305390b5b0000be75ba6d24fb63.tar.gz zig-cca57042df374305390b5b0000be75ba6d24fb63.zip | |
std: fix regressions from this branch
Also move some usingnamespace test cases from compare_output to
behavior.
Diffstat (limited to 'lib/std/event/loop.zig')
| -rw-r--r-- | lib/std/event/loop.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/event/loop.zig b/lib/std/event/loop.zig index ef19728ec9..21211c9af0 100644 --- a/lib/std/event/loop.zig +++ b/lib/std/event/loop.zig @@ -904,7 +904,7 @@ pub const Loop = struct { addr_size: *os.socklen_t, /// The following values can be bitwise ORed in flags to obtain different behavior: /// * `SOCK.CLOEXEC` - Set the close-on-exec (`FD_CLOEXEC`) flag on the new file descriptor. See the - /// description of the `O_CLOEXEC` flag in `open` for reasons why this may be useful. + /// description of the `O.CLOEXEC` flag in `open` for reasons why this may be useful. flags: u32, ) os.AcceptError!os.socket_t { while (true) { |
