From 45f7ef00343182ba0c57e66581d768f86a862bbe Mon Sep 17 00:00:00 2001 From: Dmitriy Musatkin Date: Fri, 6 Oct 2023 15:35:41 -0700 Subject: [PATCH] minor comment change --- include/aws/io/pem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/aws/io/pem.h b/include/aws/io/pem.h index 5d17e285e..0a21cc0c6 100644 --- a/include/aws/io/pem.h +++ b/include/aws/io/pem.h @@ -67,7 +67,7 @@ AWS_IO_API void aws_pem_objects_clean_up(struct aws_array_list *pem_objects); * Decodes PEM data and reads objects sequentially adding them to pem_objects. * If it comes across an object it cannot read, list of all object read until * that point is returned. - * If no objects can be read PEM or objects could not be base 64 decoded, + * If no objects can be read from PEM or objects could not be base 64 decoded, * AWS_ERROR_PEM_MALFORMED is raised. * out_pem_objects stores aws_pem_object struct by value. * Function will initialize pem_objects list. @@ -83,7 +83,7 @@ AWS_IO_API int aws_pem_objects_init_from_file_contents( * Decodes PEM data from file and reads objects sequentially adding them to pem_objects. * If it comes across an object it cannot read, list of all object read until * that point is returned. - * If no objects can be read PEM or objects could not be base 64 decoded, + * If no objects can be read from PEM or objects could not be base 64 decoded, * AWS_ERROR_PEM_MALFORMED is raised. * out_pem_objects stores aws_pem_object struct by value. * Function will initialize pem_objects list.