From 9408599c3c377ee6719aa0b2511df9baf0e0daf6 Mon Sep 17 00:00:00 2001 From: H0llyW00dzZ Date: Mon, 11 Dec 2023 23:56:14 +0700 Subject: [PATCH] Docs [Golang] [Package] [BannerCLI] Fix Typo (#35) - [+] refactor(banner.go): rename banner package to bannercli package - [+] docs(banner.go): update code comments to reflect the renamed package --- bannercli/banner.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bannercli/banner.go b/bannercli/banner.go index e6eb999..5ff624c 100644 --- a/bannercli/banner.go +++ b/bannercli/banner.go @@ -10,9 +10,9 @@ // // ... existing code ... // // // Display a binary banner -// banner.PrintTypingBanner("ChatGPT Session Exporter", 100*time.Millisecond) +// bannercli.PrintTypingBanner("ChatGPT Session Exporter", 100*time.Millisecond) // // Optionally, display an typing animated banner -// banner.PrintAnimatedBanner("ChatGPT Session Exporter", 3, 200*time.Millisecond) +// bannercli.PrintAnimatedBanner("ChatGPT Session Exporter", 3, 200*time.Millisecond) // // // ... rest of your main function ... // }