Skip to content

Commit

Permalink
fix: intrange lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
KEINOS committed Jul 10, 2024
1 parent 5f1764f commit 5ed1729
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/TApp.InteractiveTranslation.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func (a *TApp) InteractiveTranslation(orderLang []string) error {
}

// Verbose print
for i := 0; i < lenTranslated; i++ {
for i := range lenTranslated {
translated := listTranslated[i]
prefix := a.Prefix

Expand Down
2 changes: 1 addition & 1 deletion src/app/TApp.SingleShotTranslation.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (a *TApp) SingleShotTranslation(orderLang []string) (string, error) {
}

// Verbose output
for i := 0; i < lenTranslated; i++ {
for i := range lenTranslated {
translated := listTranslated[i]
prefix := a.Prefix

Expand Down

0 comments on commit 5ed1729

Please sign in to comment.