diff --git a/src/fragments/lib-v1/storage/js/upload.mdx b/src/fragments/lib-v1/storage/js/upload.mdx index f087f51a297..95c76314863 100644 --- a/src/fragments/lib-v1/storage/js/upload.mdx +++ b/src/fragments/lib-v1/storage/js/upload.mdx @@ -147,7 +147,7 @@ async function onChange(e) { -Note: 'contentType' is metadata (saved under the key 'Content-Type') for the S3 object and does not determine the 'Type' in the AWS S3 Console. If a file extension is not provided in the key of the uploaded object, the S3 console's 'Type' field will be emitted. Otherwise, the 'Type' will be populated to match the given extension of the key. The behavior of how the S3 object is treated will be based on 'contentType' in the metadata and not the 'Type'. +Note: 'contentType' is metadata (saved under the key 'Content-Type') for the S3 object and does not determine the 'Type' in the AWS S3 Console. If a file extension is not provided in the key of the uploaded object, the S3 console's 'Type' field will be omitted. Otherwise, the 'Type' will be populated to match the given extension of the key. The behavior of how the S3 object is treated will be based on 'contentType' in the metadata and not the 'Type'. For example: uploading a file with the key "example.jpg" will result in the 'Type' being set as "jpg", but the 'contentType' in metadata will determine it's behavior so setting it as "text/html" will result in the file being treated as an HTML file regardless of displayed 'Type' in the S3 console. diff --git a/src/fragments/lib/project-setup/flutter/create-application/30_provisionBackend.mdx b/src/fragments/lib/project-setup/flutter/create-application/30_provisionBackend.mdx index c425d63021e..ff0d52357c6 100644 --- a/src/fragments/lib/project-setup/flutter/create-application/30_provisionBackend.mdx +++ b/src/fragments/lib/project-setup/flutter/create-application/30_provisionBackend.mdx @@ -44,7 +44,7 @@ After the project information is filled, you will be prompted to select the AWS Please choose the profile you want to use (Use arrow keys) > default ``` -> Where possible the CLI will infer the proper configuration based on the type of project Amplify is being initialized in. In this case it knew you are using Create React App and provided the proper configuration for type of app, framework, source, distribution, build, and start options. +> Where possible, the CLI will infer the proper configuration based on the type of project Amplify is being initialized in. In this case, it knew you are using a Flutter app, source, distribution, build, and start options. Upon successfully running `amplify init`, you will see a configuration file created in `./lib/` called `amplifyconfiguration.dart`. diff --git a/src/fragments/lib/storage/js/browser-uploads.mdx b/src/fragments/lib/storage/js/browser-uploads.mdx index 0db107cd016..a86438fffc5 100644 --- a/src/fragments/lib/storage/js/browser-uploads.mdx +++ b/src/fragments/lib/storage/js/browser-uploads.mdx @@ -19,7 +19,7 @@ async function onChange(e) { -Note: 'contentType' is metadata (saved under the key 'Content-Type') for the S3 object and does not determine the 'Type' in the AWS S3 Console. If a file extension is not provided in the key of the uploaded object, the S3 console's 'Type' field will be emitted. Otherwise, the 'Type' will be populated to match the given extension of the key. The behavior of how the S3 object is treated will be based on 'contentType' in the metadata and not the 'Type'. +Note: 'contentType' is metadata (saved under the key 'Content-Type') for the S3 object and does not determine the 'Type' in the AWS S3 Console. If a file extension is not provided in the key of the uploaded object, the S3 console's 'Type' field will be omitted. Otherwise, the 'Type' will be populated to match the given extension of the key. The behavior of how the S3 object is treated will be based on 'contentType' in the metadata and not the 'Type'. For example: uploading a file with the key "example.jpg" will result in the 'Type' being set as "jpg", but the 'contentType' in metadata will determine it's behavior so setting it as "text/html" will result in the file being treated as an HTML file regardless of displayed 'Type' in the S3 console.