Skip to content

Commit b242773

Browse files
committed
Fixed go formatting
1 parent 5e4edba commit b242773

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repo_tag.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func (repo *Repository) GetTags() ([]string, error) {
110110
version.Sort(tags)
111111

112112
// Reverse order
113-
for i := 0; i < len(tags) / 2; i++ {
113+
for i := 0; i < len(tags)/2; i++ {
114114
j := len(tags) - i - 1
115115
tags[i], tags[j] = tags[j], tags[i]
116116
}

0 commit comments

Comments
 (0)