Commit 42d791cc authored by Noor Binte Amir's avatar Noor Binte Amir

[FIX] Typo in Analytics.kt

Corrected typos.
parent acb0f6f3
...@@ -10,7 +10,7 @@ interface Analytics { ...@@ -10,7 +10,7 @@ interface Analytics {
* Logs the login event. * Logs the login event.
* *
* @param event The [AuthenticationEvent] used to log in. * @param event The [AuthenticationEvent] used to log in.
* @param loginSucceeded True if successful logged in, false otherwise. * @param loginSucceeded True if logged in successfully, false otherwise.
*/ */
fun logLogin(event: AuthenticationEvent, loginSucceeded: Boolean) {} fun logLogin(event: AuthenticationEvent, loginSucceeded: Boolean) {}
...@@ -18,7 +18,7 @@ interface Analytics { ...@@ -18,7 +18,7 @@ interface Analytics {
* Logs the sign up event. * Logs the sign up event.
* *
* @param event The [AuthenticationEvent] used to sign up. * @param event The [AuthenticationEvent] used to sign up.
* @param signUpSucceeded True if successful signed up, false otherwise. * @param signUpSucceeded True if signed up successfully, false otherwise.
*/ */
fun logSignUp(event: AuthenticationEvent, signUpSucceeded: Boolean) {} fun logSignUp(event: AuthenticationEvent, signUpSucceeded: Boolean) {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment