Skip to content

Commit

Permalink
Merge pull request minio#242 from fkautz/pr_out_renaming_appenduint_t…
Browse files Browse the repository at this point in the history
…o_appenduniqint
  • Loading branch information
Frederick F. Kautz IV committed Mar 2, 2015
2 parents 60454c5 + de6131c commit 7ee3017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/utils/helpers/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func FirstUpper(str string) string {
return strings.ToUpper(str[0:1]) + str[1:]
}

func AppendUint(slice []int, i int) []int {
func AppendUniqInt(slice []int, i int) []int {
for _, ele := range slice {
if ele == i {
return slice
Expand Down

0 comments on commit 7ee3017

Please sign in to comment.