From ec5a068ac133d01477da340fc34cd987a817300d Mon Sep 17 00:00:00 2001 From: Jim Calabro Date: Mon, 4 Sep 2023 03:09:11 -0400 Subject: [PATCH] Make a Couple Syscall Comments Consistent (#17066) * Make a Couple Syscall Comments Consistent * linux.diet.net -> man7.org --- lib/std/os/linux/io_uring.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/std/os/linux/io_uring.zig b/lib/std/os/linux/io_uring.zig index fcf09b80b6..f87cd453b9 100644 --- a/lib/std/os/linux/io_uring.zig +++ b/lib/std/os/linux/io_uring.zig @@ -371,10 +371,10 @@ pub const IO_Uring = struct { }, }; - /// Queues (but does not submit) an SQE to perform a `read(2)` or `preadv` depending on the buffer type. + /// Queues (but does not submit) an SQE to perform a `read(2)` or `preadv(2)` depending on the buffer type. /// * Reading into a `ReadBuffer.buffer` uses `read(2)` /// * Reading into a `ReadBuffer.iovecs` uses `preadv(2)` - /// If you want to do a `preadv2()` then set `rw_flags` on the returned SQE. See https://linux.die.net/man/2/preadv. + /// If you want to do a `preadv2(2)` then set `rw_flags` on the returned SQE. See https://man7.org/linux/man-pages/man2/preadv2.2.html /// /// Returns a pointer to the SQE. pub fn read(