Skip to content

Commit

Permalink
Merge branch 'docs/guides-first-pass' of https://github.com/larkiny/n…
Browse files Browse the repository at this point in the history
…odekit into docs/guides-first-pass
  • Loading branch information
larkiny committed Jan 9, 2025
2 parents 56752d8 + 9762a2c commit c6f1f4f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/configure/configure.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func configureNode() error {

// Check systemctl first
if algod.IsService() {
if promptWrapperYes("Algorand is installed as a service. Do you wish to edit the service file to change the data directory? (Y/N)") {
if promptWrapperYes("Algorand is installed as a service. Do you wish to edit the service file to change the data directory? (y/N)") {
// Edit the service file with the user's new data directory
systemServiceConfigure = true
} else {
Expand Down
4 changes: 2 additions & 2 deletions docs/src/content/docs/guides/bootstrap.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ If there is none, it will ask if you want to start a node installation:

> Installing A Node
>
> It looks like you're running this for the first time. Would you like to install a node? (Y/N)
> It looks like you're running this for the first time. Would you like to install a node? (y/n)
You can respond by pressing the `Y` or `N` keys of your keyboard, for `Yes` and `No` respectively.

Expand All @@ -31,7 +31,7 @@ It will then ask if you want to perform a "fast-catchup" with the network:

> Regular sync with the network usually takes multiple days to weeks. You can optionally perform fast-catchup to sync in 30-60 minutes instead.
>
> Would you like to preform a fast-catchup after installation? (Y/N)
> Would you like to preform a fast-catchup after installation? (y/n)
Fast-catchup saves a lot of time, so we recommend responding Yes.

Expand Down
4 changes: 2 additions & 2 deletions ui/bootstrap/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ const (

const InstallQuestionMsg = `# Installing A Node
It looks like you're running this for the first time. Would you like to install a node? (Y/N)
It looks like you're running this for the first time. Would you like to install a node? (y/n)
`

const CatchupQuestionMsg = `# Catching Up
Regular sync with the network usually takes multiple days to weeks. You can optionally perform fast-catchup to sync in 30-60 minutes instead.
Would you like to preform a fast-catchup after installation? (Y/N)
Would you like to preform a fast-catchup after installation? (y/n)
`

type Model struct {
Expand Down

0 comments on commit c6f1f4f

Please sign in to comment.