From 1d97660e8e96c419ded4a0b172374a5e7a2de9df Mon Sep 17 00:00:00 2001 From: mik-tf Date: Fri, 11 Oct 2024 00:42:04 -0400 Subject: [PATCH] fixed typo in msg --- flist.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flist.v b/flist.v index e1d81fa..5ffe45c 100644 --- a/flist.v +++ b/flist.v @@ -174,7 +174,7 @@ fn login() { mut token_exists := os.exists(token_file) os.mkdir_all(config_dir) or { panic(err) } if !token_exists { - tfhub_token := os.input('Please enter your tfhub token: ') + tfhub_token := os.input('Please enter your TF Hub token: ') os.write_file(token_file, tfhub_token) or { panic(err) } success_message('TF Hub token saved in ' + token_file) } else {