Skip to content

Commit

Permalink
Fix typo in client's connect method docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
EwenSellitto committed Aug 1, 2023
1 parent 6904845 commit 37a826a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class Client {
/**
* connect to database
* @param config config for client
* @returns Clinet instance
* @returns Client instance
*/
async connect(config: ClientConfig): Promise<Client> {
this.config = {
Expand Down

1 comment on commit 37a826a

@EwenSellitto
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found a small typo in the docstring of the client connect method.

Please sign in to comment.