From 95b2a56af850b88860dd3dd5a6e21bfe8e6f1826 Mon Sep 17 00:00:00 2001 From: Hui Zhao <10602282+HuiSF@users.noreply.github.com> Date: Thu, 2 Nov 2023 15:48:18 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Chris F <5827964+cshfang@users.noreply.github.com> --- packages/aws-amplify/src/initSingleton.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/aws-amplify/src/initSingleton.ts b/packages/aws-amplify/src/initSingleton.ts index b781c787ae8..bb25746756e 100644 --- a/packages/aws-amplify/src/initSingleton.ts +++ b/packages/aws-amplify/src/initSingleton.ts @@ -21,8 +21,8 @@ export const DefaultAmplify = { * Configures Amplify with the {@link resourceConfig} and {@link libraryOptions}. * * @param resourceConfig The {@link ResourcesConfig} object that is typically imported from the - * `amplifyconfiguration.json` file. It can also be an object literal created inline by calling `Amplify.configure`. - * @param libraryOptions The {@link LibraryOptions} object contains configuration for the library of each category. + * `amplifyconfiguration.json` file. It can also be an object literal created inline when calling `Amplify.configure`. + * @param libraryOptions The {@link LibraryOptions} additional options for the library. * * @example * import config from './amplifyconfiguration.json'; @@ -76,7 +76,7 @@ export const DefaultAmplify = { } }, /** - * Returns the {@link ResourcesConfig} object passed in as the `libraryOptions` parameter of calling + * Returns the {@link ResourcesConfig} object passed in as the `resourceConfig` parameter when calling * `Amplify.configure`. * * @returns An {@link ResourcesConfig} object.