From a4eda95e48ba4c80e344ea1f8573eb3b1f8b6622 Mon Sep 17 00:00:00 2001 From: vladislav doster Date: Wed, 29 Oct 2025 15:05:51 -0500 Subject: [PATCH] docs(README.md): correct grammar - misc. grammar fixes - improve readability --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 705e337c..0458fd87 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ ## Features -* A clean API separated per service. Each module has a correspondent service. +* A clean API separated per service. Each module has a corresponding service. * Support for most of AWS services. * Configurable HTTP client and JSON parser. * Generated by [aws-codegen](https://github.com/aws-beam/aws-codegen) using the @@ -33,7 +33,7 @@ iex> IO.inspect(result) %{"HasMoreStreams" => false, "StreamNames" => []} ``` -If you are using `AWS.S3`, you can upload a file with integrity check doing: +If you are using `AWS.S3`, you can upload a file with integrity check by doing: ```elixir iex> client = AWS.Client.create("your-access-key-id", "your-secret-access-key", "us-east-1") @@ -44,7 +44,7 @@ iex> AWS.S3.put_object(client, "your-bucket-name", "foo/your-file-on-s3.txt", ``` Note that you may need to specify the `ContentType` attribute when calling `AWS.S3.put_object/4`. -This is because S3 will use that to store the MIME type of the file. +This is because S3 will use that to store the file's MIME type. You can also upload to S3 as multipart. If you're facing timeout issues, this strategy is recommended: