From bd57fc34d4327e899720b95d4a49028900828582 Mon Sep 17 00:00:00 2001 From: mdosch Date: Sun, 26 May 2019 21:07:07 +0200 Subject: [PATCH] Fixed a typo. --- getarticles.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getarticles.go b/getarticles.go index 6ea90ac..abbed7e 100644 --- a/getarticles.go +++ b/getarticles.go @@ -216,7 +216,7 @@ func getArticles(feedURL string, max int, noExcerpt bool) (string, error) { description = "" // Fill article description/content with the fragments separated by one newline. for _, line := range fragments { - description = description + line + "n" + description = description + line + "\n" } // Only append article link if it is not yet contained in description (e.g. read more: URL).