[O] Fix grammar mistakes

This commit is contained in:
Hykilpikonna
2019-12-02 13:55:35 -05:00
parent 793c4dcf16
commit 7550a99166
+3 -2
View File
@@ -61,7 +61,7 @@ export default class Login extends Vue
} }
/** /**
* On click, sends username and password to the server. * When the user clicks, send the username and password to the server.
*/ */
public onLoginClick() public onLoginClick()
{ {
@@ -96,6 +96,7 @@ export default class Login extends Vue
}) })
.catch(err => .catch(err =>
{ {
// TODO: Show error properly
alert(err); alert(err);
// Allow the user to retry // Allow the user to retry
@@ -104,7 +105,7 @@ export default class Login extends Vue
} }
/** /**
* This is called when the user hits enter in the input boxes. * This is called when the user hits enter on the input boxes.
*/ */
public onEnter() public onEnter()
{ {