Skip to content

Commit ec5a068

Browse files
authored
Make a Couple Syscall Comments Consistent (#17066)
* Make a Couple Syscall Comments Consistent * linux.diet.net -> man7.org
1 parent bff5453 commit ec5a068

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/std/os/linux/io_uring.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,10 +371,10 @@ pub const IO_Uring = struct {
371371
},
372372
};
373373

374-
/// Queues (but does not submit) an SQE to perform a `read(2)` or `preadv` depending on the buffer type.
374+
/// Queues (but does not submit) an SQE to perform a `read(2)` or `preadv(2)` depending on the buffer type.
375375
/// * Reading into a `ReadBuffer.buffer` uses `read(2)`
376376
/// * Reading into a `ReadBuffer.iovecs` uses `preadv(2)`
377-
/// If you want to do a `preadv2()` then set `rw_flags` on the returned SQE. See https://linux.die.net/man/2/preadv.
377+
/// 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
378378
///
379379
/// Returns a pointer to the SQE.
380380
pub fn read(

0 commit comments

Comments
 (0)