diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-30 18:19:33 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-06-30 18:19:33 +0530 |
commit | d3951be451e7df5d889061716c94602ba6b1d71a (patch) | |
tree | f22e68b8079ad2ffc59ddf802de224c9a247a435 /ui/episodes.go | |
parent | 2c79256de81f06465092ad2a9b94da679e6ec95a (diff) |
added help message for episodes command
Diffstat (limited to 'ui/episodes.go')
-rw-r--r-- | ui/episodes.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/episodes.go b/ui/episodes.go index 748482b..2ea0197 100644 --- a/ui/episodes.go +++ b/ui/episodes.go @@ -31,7 +31,7 @@ import ( // very short name I know func CreateEpisodeUpdateConfirmationMessage(title string, prevEpNum, epNum int) string { - return fmt.Sprintf("Set Episodes Watched for \x1b[35m%s\x1b[0m from \x1b[1;36m%d\x1b[0m to \x1b[1;33m%d\x1b[0m.", title, prevEpNum, epNum) + return fmt.Sprintf("Set Episodes Watched for \x1b[35m%s\x1b[0m from \x1b[1;33m%d\x1b[0m to \x1b[1;36m%d\x1b[0m.", title, prevEpNum, epNum) } @@ -55,7 +55,7 @@ func EpisodeInput(anime a.Anime) { } prompt := p.Prompt { - Label: fmt.Sprintf("Set Episode Number (%d/%d watched):", epWatchedNum, epTotalNum), + Label: fmt.Sprintf("Set Episode Number (%d/%d watched): ", epWatchedNum, epTotalNum), Templates: template, Validate: validate, } @@ -90,7 +90,7 @@ func ChapterInput(manga m.Manga) { } prompt := p.Prompt { - Label: fmt.Sprintf("Set Chapter Number (%d/%d read):", chReadNum, chTotalNum), + Label: fmt.Sprintf("Set Chapter Number (%d/%d read): ", chReadNum, chTotalNum), Templates: template, Validate: validate, } |