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

@ -26,7 +26,7 @@ const (
fn new_scanner(file_path string) *Scanner {
if !os.file_exists(file_path) {
panic('"$file_path" doesnt exist')
panic('"$file_path" doesn\'t exist')
}
scanner := &Scanner {
file_path: file_path