]> Sergey Matveev's repositories - sgblog.git/blobdiff - cmd/sgblog/topics.go
Experimental gemini support
[sgblog.git] / cmd / sgblog / topics.go
index be70e733ede38a7700a92124200d0a9f8b84619b..9a8979376fce2c09ac3fcafa0d454b4fea33a0ad 100644 (file)
@@ -1,5 +1,5 @@
 /*
-SGBlog -- Git-backed CGI/inetd blogging/phlogging engine
+SGBlog -- Git-backed CGI/UCSPI blogging/phlogging/gemlogging engine
 Copyright (C) 2020-2021 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
@@ -39,7 +39,7 @@ type TopicsCacheState struct {
 
 func (tc TopicsCache) Topics() []string {
        topics := make([]string, 0, len(tc))
-       for t, _ := range tc {
+       for t := range tc {
                topics = append(topics, t)
        }
        sort.Strings(topics)