Skip to content

Commit

Permalink
Merge branch 'master' into cs/outputFolder
Browse files Browse the repository at this point in the history
  • Loading branch information
jdneo committed May 17, 2019
2 parents bb78e17 + d01a8f0 commit 66acddd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/leetCodeManager.ts
Expand Up @@ -58,8 +58,8 @@ class LeetCodeManager extends EventEmitter {

childProc.on("error", reject);
const name: string | undefined = await vscode.window.showInputBox({
prompt: "Enter user name.",
validateInput: (s: string): string | undefined => s && s.trim() ? undefined : "User name must not be empty",
prompt: "Enter username or E-mail.",
validateInput: (s: string): string | undefined => s && s.trim() ? undefined : "The input must not be empty",
});
if (!name) {
childProc.kill();
Expand Down

0 comments on commit 66acddd

Please sign in to comment.