diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-01-09 00:22:04 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-01-09 00:22:04 +0100 |
commit | 914be83c6066ffb8103707528f8e8279df97bf63 (patch) | |
tree | 6b8fcd705b132d9e591edd739ad30864db3fd6e4 /internal/feed/template | |
parent | d480edb65af5d6e9d8906940cdd4093761c1b451 (diff) | |
download | feed2imap-go-914be83c6066ffb8103707528f8e8279df97bf63.tar.gz feed2imap-go-914be83c6066ffb8103707528f8e8279df97bf63.tar.bz2 feed2imap-go-914be83c6066ffb8103707528f8e8279df97bf63.zip |
Fix comment
Diffstat (limited to 'internal/feed/template')
-rw-r--r-- | internal/feed/template/funcs.go | 2 |
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 != "" { |