1
0
Fork 0
mirror of synced 2024-06-26 10:10:57 +12:00

correction

This commit is contained in:
Damodar Lohani 2021-06-01 16:13:19 +05:45
parent c2651d56af
commit 7dd342b664

View file

@ -25,7 +25,7 @@ When trying to connect to Appwrite from an emulator or a mobile device, localhos
```kotlin
// Register User
val account = Account(client)
val user = account.create(
val response = account.create(
"email@example.com",
"password"
)
@ -43,7 +43,7 @@ val client = Client(context)
.setSelfSigned(true) // Remove in production
val account = Account(client)
val user = account.create(
val response = account.create(
"email@example.com",
"password"
)