From c1ab54656aaa11515c699fad195d76ba6a0e52f7 Mon Sep 17 00:00:00 2001 From: John Rehbein Date: Tue, 22 Aug 2023 21:43:10 -0700 Subject: [PATCH] doc: minor clarification about safe memory access --- src/unix/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/stream.c b/src/unix/stream.c index 28c4d546..29d4af6a 100644 --- a/src/unix/stream.c +++ b/src/unix/stream.c @@ -1394,7 +1394,7 @@ int uv_write2(uv_write_t* req, } -/* The buffers to be written must remain valid until the callback is called. +/* The buffers to be written must not be accessed until the callback is called. * This is not required for the uv_buf_t array. */ int uv_write(uv_write_t* req,