@@ -11,7 +11,7 @@ import { Settings } from './client-settings'
1111export type ClientConfig = ( obj : Settings ) => Settings
1212
1313/**
14- * Instanciates the SDK from a configuration {@link Profile}.
14+ * Instantiates the SDK from a configuration {@link Profile}.
1515 *
1616 * @param profile - The profile
1717 * @returns A factory {@link ClientConfig}
@@ -41,7 +41,7 @@ export const withProfile =
4141 }
4242
4343/**
44- * Instanciates the SDK with a different HTTP client.
44+ * Instantiates the SDK with a different HTTP client.
4545 *
4646 * @param httpClient - A fetch compatible HTTP client
4747 * @returns A factory {@link ClientConfig}
@@ -55,7 +55,7 @@ export const withHTTPClient =
5555 ( settings : Readonly < Settings > ) : Settings => ( { ...settings , httpClient } )
5656
5757/**
58- * Instanciates the SDK with a default page size.
58+ * Instantiates the SDK with a default page size.
5959 *
6060 * @param defaultPageSize - The default page size
6161 * @returns A factory {@link ClientConfig}
@@ -69,7 +69,7 @@ export const withDefaultPageSize =
6969 ( settings : Readonly < Settings > ) : Settings => ( { ...settings , defaultPageSize } )
7070
7171/**
72- * Instanciates the SDK with a different default user agent.
72+ * Instantiates the SDK with a different default user agent.
7373 *
7474 * @param userAgent - The default user agent
7575 * @returns A factory {@link ClientConfig}
@@ -83,7 +83,7 @@ export const withUserAgent =
8383 ( settings : Readonly < Settings > ) : Settings => ( { ...settings , userAgent } )
8484
8585/**
86- * Instanciates the SDK with an additional user agent.
86+ * Instantiates the SDK with an additional user agent.
8787 *
8888 * @param userAgent - The suffix to append to default user agent
8989 * @returns A factory {@link ClientConfig}
0 commit comments