Skip to content

Commit 576c4fe

Browse files
committed
fix: lint
1 parent 01182c5 commit 576c4fe

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/client-side-encryption/client-side-encryption.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -480,8 +480,8 @@ See
480480

481481
The `credentialProviders` property may be specified on [ClientEncryptionOpts](#ClientEncryptionOpts) or
482482
[AutoEncryptionOpts](#AutoEncryptionOpts). Current support is for AWS only, but is designed to be able to accomodate
483-
additional providers in the future. If a custom credential provider is present, it MUST be used instead of the
484-
default flow for fetching automatic credentials.
483+
additional providers in the future. If a custom credential provider is present, it MUST be used instead of the default
484+
flow for fetching automatic credentials.
485485

486486
```typescript
487487
interface CredentialProviders {
@@ -498,10 +498,10 @@ The following shows an example object of `CredentialProviders` for Node.js:
498498
```typescript
499499
import { fromNodeProviderChain } from '@aws-sdk/credential-providers';
500500

501-
{
502-
// Acquire credentials for AWS:
503-
aws: fromNodeProviderChain()
504-
}
501+
const creentialProviders = {
502+
// Acquire credentials for AWS:
503+
aws: fromNodeProviderChain()
504+
};
505505
```
506506
507507
#### kmsProviders

0 commit comments

Comments
 (0)