summaryrefslogtreecommitdiff
path: root/go/parabola_hackers/util.go
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-06-18 06:19:16 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-06-18 06:19:16 -0400
commit95c195baf42e8a74680a74acdc20c00bab7660eb (patch)
tree996e3d8ab8832b35f0195c7c026d646ce97cdecd /go/parabola_hackers/util.go
parentfd98ee554c3c785ee83460e83027d56891fbd9b2 (diff)
go back to using plain stringsv20160518.1
Diffstat (limited to 'go/parabola_hackers/util.go')
-rw-r--r--go/parabola_hackers/util.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/parabola_hackers/util.go b/go/parabola_hackers/util.go
index 8dd9374..9a241db 100644
--- a/go/parabola_hackers/util.go
+++ b/go/parabola_hackers/util.go
@@ -36,7 +36,7 @@ func RandomString(alphabet string, n uint) (str string, err error) {
return
}
-func set2list(set map[string]bool) []string {
+func Set2list(set map[string]bool) []string {
list := make([]string, len(set))
i := uint(0)
for item, _ := range set {