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

fix: fix error messages

This commit is contained in:
Yoshiya Hinosawa
2019-06-23 09:02:33 +09:00
committed by Alex Medvednikov
parent f5b8f34a05
commit cf6aa16ee4
3 changed files with 3 additions and 3 deletions

View File

@@ -513,7 +513,7 @@ fn (c &V) v_files_from_dir(dir string) []string {
mut res := []string
mut files := os.ls(dir)
if !os.file_exists(dir) {
panic('$dir doesnt exist')
panic('$dir doesn\'t exist')
}
if c.is_verbose {
println('v_files_from_dir ("$dir")')