1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

repl: make the info message a bit smaller

This commit is contained in:
Alexander Medvednikov
2020-07-08 17:22:38 +02:00
parent e7cd496c31
commit 03b76d19f1
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,7 @@ fn main() {
if args.len == 0 || args[0] in ['-', 'repl'] {
// Running `./v` without args launches repl
if args.len == 0 {
println('For usage information, quit V REPL using `exit` and use `v help`')
println('For usage information, quit V REPL and run `v help`')
}
util.launch_tool(false, 'vrepl', os.args[1..])
return