From f3a74e7d80ddb1b2984ef696573e7ea1fe16b31e Mon Sep 17 00:00:00 2001 From: Vitor Oliveira Date: Fri, 13 Sep 2019 04:25:05 -0700 Subject: [PATCH] compiler: fix typo in main.v --- compiler/main.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/main.v b/compiler/main.v index f04c31130a..91bc9063c2 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -64,7 +64,7 @@ mut: dir string // directory (or file) being compiled (TODO rename to path?) table &Table // table with types, vars, functions etc cgen &CGen // C code generator - pref &Preferences // all the prefrences and settings extracted to a struct for reusability + pref &Preferences // all the preferences and settings extracted to a struct for reusability lang_dir string // "~/code/v" out_name string // "program.exe" vroot string