Skip to content

Commit

Permalink
Change "Skip Tutorial" to "Exit Tutorial"
Browse files Browse the repository at this point in the history
  • Loading branch information
catloversg committed Dec 12, 2024
1 parent 448a0a9 commit 9d3be5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Terminal/Terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ export class Terminal {
throw new Error("Could not get n00dles server");
}
const errorMessageForBadCommand =
"Bad command. Please follow the tutorial or click 'Skip Tutorial' if you'd like to skip it.";
"Bad command. Please follow the tutorial or click 'Exit Tutorial' if you'd like to skip it.";
switch (ITutorial.currStep) {
case iTutorialSteps.TerminalHelp:
if (commandArray.length === 1 && commandArray[0] == "help") {
Expand Down Expand Up @@ -778,7 +778,7 @@ export class Terminal {
}
break;
default:
this.error("Please follow the tutorial or click 'Skip Tutorial' if you'd like to skip it");
this.error("Please follow the tutorial or click 'Exit Tutorial' if you'd like to skip it");
return;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/ui/InteractiveTutorial/InteractiveTutorialRoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ export async function main(ns) {
<br />
<br />
<Button onClick={iTutorialEnd}>
{step !== iTutorialSteps.DocumentationPageInfo ? "Skip Tutorial" : "Finish Tutorial"}
{step !== iTutorialSteps.DocumentationPageInfo ? "Exit Tutorial" : "Finish Tutorial"}
</Button>
</Paper>
</>
Expand Down

0 comments on commit 9d3be5b

Please sign in to comment.