From 8f5d98addbceca1c64ace7dbf8d10a118315d1f4 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Tue, 3 Apr 2018 22:36:32 +0200 Subject: [PATCH] Minor typo --- patches/import-mal-anime-data/import-mal-anime-data.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/import-mal-anime-data/import-mal-anime-data.go b/patches/import-mal-anime-data/import-mal-anime-data.go index 35f8206e..383fbfef 100644 --- a/patches/import-mal-anime-data/import-mal-anime-data.go +++ b/patches/import-mal-anime-data/import-mal-anime-data.go @@ -12,7 +12,7 @@ var malDB = arn.Node.Namespace("mal").RegisterTypes((*mal.Anime)(nil)) func main() { defer arn.Node.Close() - color.Yellow("Importing genres") + color.Yellow("Importing MAL data") for anime := range arn.StreamAnime() { malID := anime.GetMapping("myanimelist/anime") @@ -25,7 +25,7 @@ func main() { sync(anime, malID) } - color.Green("Finished importing genres") + color.Green("Finished importing MAL data") } func sync(anime *arn.Anime, malID string) {