Skip to content

Commit

Permalink
Merge pull request #268 from LIT-Protocol/wyatt/add-missing-space
Browse files Browse the repository at this point in the history
Missing space in package import code example
  • Loading branch information
a1ttech authored Apr 23, 2024
2 parents c26d941 + 0421cf1 commit 187564e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/sdk/access-control/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ If you are using `NodeJS` you should install `@lit-protocol/lit-node-client-node
Use the **Lit JS SDK V4**:

```jsx
import * as LitJsSdkfrom "@lit-protocol/lit-node-client";
import * as LitJsSdk from "@lit-protocol/lit-node-client";

```

Expand All @@ -53,7 +53,7 @@ Within a file (in the Lit example repos it will likely be called `lit.js`), set
`client.connect()` will return a promise that resolves when you are connected to the Lit Network.

```jsx
const client =new LitJsSdk.LitNodeClient({
const client = new LitJsSdk.LitNodeClient({
litNetwork: 'habanero',
});

Expand Down

0 comments on commit 187564e

Please sign in to comment.