Skip to content

Commit

Permalink
fixed up some mistakes from earlier
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Hayhurst <[email protected]>
  • Loading branch information
jakdept committed Oct 13, 2023
1 parent ea0acb4 commit e8388da
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions cmd/assetList.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ Examples:
ResultsPerPage: 100,
MethodArgs: apiArgs,
}
results, err := lw - cliCliInst.AllPaginatedResults(&methodArgs)
results, err := lwCliInst.AllPaginatedResults(&methodArgs)
if err != nil {
lw - cliCliInst.Die(err)
lwCliInst.Die(err)
}

if jsonFlag {
pretty, err := lw - cliCliInst.JsonEncodeAndPrettyPrint(results)
pretty, err := lwCliInst.JsonEncodeAndPrettyPrint(results)
if err != nil {
lw - cliCliInst.Die(err)
lwCliInst.Die(err)
}
fmt.Print(pretty)
} else {
Expand All @@ -74,7 +74,7 @@ Examples:

var details apiTypes.Subaccnt
if err := instance.CastFieldTypes(item, &details); err != nil {
lw - cliCliInst.Die(err)
lwCliInst.Die(err)
}

fmt.Printf("%d.) ", cnt)
Expand Down
2 changes: 1 addition & 1 deletion cmd/authInit.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func fetchAuthDataInteractively() (writeConfig bool, err error) {
userInputExitEarly := make(chan bool)
userInputContext := make(chan cmdTypes.AuthContext)

fmt.Println("\nTo exit early, type 'exit'\n")
fmt.Printf("\nTo exit early, type 'exit'\n\n")

go func() {
WHILEMOREADDS:
Expand Down

0 comments on commit e8388da

Please sign in to comment.