Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouop0 committed Feb 11, 2024
1 parent 702b7f6 commit 20d57e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/event/vlog.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ func StartAndEndTokenIDToString(startTokenID, endTokenID int64) (string, int64)
return str, count
}

func TokenIDsToString(tokenIds []int64) string {
func TokenIDsToString(tokenIDs []int64) string {
str := ""
for _, tokenID := range tokenIds {
for _, tokenID := range tokenIDs {
if str == "" {
str = fmt.Sprintf("%s%d", str, tokenID)
} else {
Expand Down

0 comments on commit 20d57e0

Please sign in to comment.