Skip to content

Commit d081589

Browse files
committed
Removed redundant await
1 parent c8a5288 commit d081589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/develop/clients/nodejs/migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ to make the connection:
8585
```js
8686
import { createClient } from 'redis';
8787

88-
const client = await createClient();
88+
const client = createClient();
8989
await client.connect(); // Requires explicit connection.
9090
```
9191

0 commit comments

Comments
 (0)