Fix tutorial getting started link

change tformat.rst file name
This commit is contained in:
Mughur 2023-02-08 03:46:42 +02:00
parent e7588de19c
commit 67fde6167b
3 changed files with 13 additions and 7 deletions

@ -1,7 +1,7 @@
moveTail() Netscript Function resizeTail() Netscript Function
=============================== ===============================
.. js:function:: moveTail(width, heigth[, pid]) .. js:function:: resizeTail(width, heigth[, pid])
:RAM cost: 0 GB :RAM cost: 0 GB

@ -414,7 +414,13 @@ export function InteractiveTutorialRoot(): React.ReactElement {
<> <>
<Typography> <Typography>
This page displays information about all of your scripts that are running across every server. You can use This page displays information about all of your scripts that are running across every server. You can use
this to gauge how well your scripts are doing. Let's go back to this to gauge how well your scripts are doing.
<br /><br />
Click on Home to see the scripts running on it.
<br /><br />
Then click on n00dles.js to see the scripts information.
<br /><br />
Let's go back to
</Typography> </Typography>
<ListItem> <ListItem>
<LastPageIcon color={"error"} /> <LastPageIcon color={"error"} />
@ -473,7 +479,7 @@ export function InteractiveTutorialRoot(): React.ReactElement {
<Typography>through the main navigation menu now.</Typography> <Typography>through the main navigation menu now.</Typography>
</> </>
), ),
canNext: true, canNext: false,
}, },
[iTutorialSteps.HacknetNodesIntroduction as number]: { [iTutorialSteps.HacknetNodesIntroduction as number]: {
content: ( content: (
@ -499,7 +505,7 @@ export function InteractiveTutorialRoot(): React.ReactElement {
</ListItem> </ListItem>
</> </>
), ),
canNext: true, canNext: false,
}, },
[iTutorialSteps.WorldDescription as number]: { [iTutorialSteps.WorldDescription as number]: {
content: ( content: (
@ -517,7 +523,7 @@ export function InteractiveTutorialRoot(): React.ReactElement {
</ListItem> </ListItem>
</> </>
), ),
canNext: true, canNext: false,
}, },
[iTutorialSteps.TutorialPageInfo as number]: { [iTutorialSteps.TutorialPageInfo as number]: {
content: ( content: (
@ -527,7 +533,7 @@ export function InteractiveTutorialRoot(): React.ReactElement {
<br /> <br />
<br /> <br />
The{" "} The{" "}
<a href="https://bitburner-official.readthedocs.io/en/latest/guidesandtips/gettingstartedguideforbeginnerprogrammers.html"> <a href="https://bitburner-official.readthedocs.io/en/latest/guidesandtips/gettingstartedguideforbeginnerprogrammers.html" target="_blank">
Getting Started Getting Started
</a>{" "} </a>{" "}
contains the guide for new players, navigating you through most of early game. contains the guide for new players, navigating you through most of early game.