From 15b88a3401c6cb42880ed1900d1d2db063e9261c Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Fri, 5 Jul 2024 10:23:50 -0700 Subject: [PATCH] fix doc --- include/aws/s3/private/s3_client_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aws/s3/private/s3_client_impl.h b/include/aws/s3/private/s3_client_impl.h index 90129eaf..d16097ca 100644 --- a/include/aws/s3/private/s3_client_impl.h +++ b/include/aws/s3/private/s3_client_impl.h @@ -325,7 +325,7 @@ struct aws_s3_client { * An array of `struct aws_byte_cursor *` of network interface names. The cursors are over the strings in * `network_interface_names` so that we can easily pass it to the connection manager without any processing. We need * to create both `struct aws_array_list` and the array of `struct aws_byte_cursor` since byte - * cursors are non-owning and we need to ensure that they live as long as the client lives. + * cursors are non-owning and we need to ensure that the underlying memory is valid as long as the client lives. */ struct aws_byte_cursor *network_interface_names_cursor_array; size_t num_network_interface_names;