Skip to content

Commit dc3d24b

Browse files
committed
fix lint
1 parent a89d420 commit dc3d24b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ParseUser.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ class ParseUser extends ParseObject {
623623
return user.signUp({}, options);
624624
}
625625

626-
/**
626+
/**
627627
* Logs in a user with a username (or email) and password. On success, this
628628
* saves the session to disk, so you can retrieve the currently logged in
629629
* user using <code>current</code>.
@@ -692,9 +692,9 @@ class ParseUser extends ParseObject {
692692
usernameIsObject
693693
? usernameOrObject
694694
: {
695-
username: usernameOrObject,
696-
password: passwordOrOptions,
697-
}
695+
username: usernameOrObject,
696+
password: passwordOrOptions,
697+
}
698698
);
699699
return user.logIn(options);
700700
}

0 commit comments

Comments
 (0)