Skip to content

Commit dc2ff52

Browse files
authored
Merge pull request #2901 from aryandevra24/patch-1
remove unnecessary semicolon(;) in sign up snippet
2 parents fac90cc + d0378f8 commit dc2ff52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/docs/products/auth/email-password/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can use the Appwrite Client SDKs to create an account using email and passwo
1414
import { Client, Account, ID } from "appwrite";
1515

1616
const client = new Client()
17-
.setProject('<PROJECT_ID>'); // Your project ID
17+
.setProject('<PROJECT_ID>') // Your project ID
1818
.setEndpoint('https://<REGION>.cloud.appwrite.io/v1');
1919

2020
const account = new Account(client);

0 commit comments

Comments
 (0)