@@ -44,7 +44,7 @@ import httpClient from './core/contentstackHTTPClient.js'
44
44
* import * as contentstack from '@contentstack/management'
45
45
* const client = contentstack.client({ maxRequests: 5 })
46
46
*
47
- * @prop {boolean= } params.retryOnError - Optional boolean for retry on failuer . Default is true
47
+ * @prop {boolean= } params.retryOnError - Optional boolean for retry on failure . Default is true
48
48
* @example //Set the `retryOnError` to false
49
49
* import * as contentstack from '@contentstack/management'
50
50
* const client = contentstack.client({ retryOnError: false })
@@ -54,7 +54,7 @@ import httpClient from './core/contentstackHTTPClient.js'
54
54
* import * as contentstack from '@contentstack/management'
55
55
* const client = contentstack.client({ retryLimit: 2 })
56
56
*
57
- * @prop {number= } params.retryDelay - The number of miliseconds to use for operation retries. Default is 300ms
57
+ * @prop {number= } params.retryDelay - The number of milliseconds to use for operation retries. Default is 300ms
58
58
* @example //Set the `retryDelay` to 500ms
59
59
* import * as contentstack from '@contentstack/management'
60
60
* const client = contentstack.client({ retryDelay: 500 })
@@ -93,7 +93,7 @@ import httpClient from './core/contentstackHTTPClient.js'
93
93
* const client = contentstack.client({ maxContentLength: 1024 ** 3 })
94
94
*
95
95
* @prop {number= } params.maxBodyLength - Optional maximum body length in bytes (default: 10 MB)
96
- * @example //Set the `maxContentLength ` to 1024 ** 2 * 10 // 10 MB
96
+ * @example //Set the `maxBodyLength ` to 1024 ** 2 * 10 // 10 MB
97
97
* import * as contentstack from '@contentstack/management'
98
98
* const client = contentstack.client({ maxBodyLength: 1024 ** 2 * 10 })
99
99
*
0 commit comments