aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2022-01-09 00:22:04 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2022-01-09 00:22:04 +0100
commit914be83c6066ffb8103707528f8e8279df97bf63 (patch)
tree6b8fcd705b132d9e591edd739ad30864db3fd6e4 /internal
parentd480edb65af5d6e9d8906940cdd4093761c1b451 (diff)
downloadfeed2imap-go-914be83c6066ffb8103707528f8e8279df97bf63.tar.gz
feed2imap-go-914be83c6066ffb8103707528f8e8279df97bf63.tar.bz2
feed2imap-go-914be83c6066ffb8103707528f8e8279df97bf63.zip
Fix comment
Diffstat (limited to 'internal')
-rw-r--r--internal/feed/template/funcs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/feed/template/funcs.go b/internal/feed/template/funcs.go
index 300b9ca..30a2975 100644
--- a/internal/feed/template/funcs.go
+++ b/internal/feed/template/funcs.go
@@ -37,7 +37,7 @@ func lastUrlPart(url string) string {
// byteCount receives an integer as a string, that is interpreted as a size in bytes.
// This size is then equipped with the corresponding unit:
-//
+// 1023 --> 1023 B; 1024 --> 1.0 KB; ...
func byteCount(str string) string {
var b uint64
if str != "" {