From 5645ee28751d34424b4be57fe373a786bed44dac Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 3 Oct 2023 06:10:28 +0900 Subject: [PATCH] v.util: fix typo in module.v (#19494) --- vlib/v/util/module.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/util/module.v b/vlib/v/util/module.v index dfc3f972a2..c8591dd033 100644 --- a/vlib/v/util/module.v +++ b/vlib/v/util/module.v @@ -61,7 +61,7 @@ pub fn qualify_module(pref_ &pref.Preferences, mod string, file_path string) str // TODO: find most stable solution & test with -usecache // // TODO 2022-01-30: Using os.getwd() here does not seem right *at all* imho. - // TODO 2022-01-30: That makes lookup dependent on fragile enviroment factors. + // TODO 2022-01-30: That makes lookup dependent on fragile environment factors. // TODO 2022-01-30: The lookup should be relative to the folder, in which the current file is, // TODO 2022-01-30: *NOT* to the working folder of the compiler, which can change easily. if clean_file_path.replace(os.getwd() + os.path_separator, '') == mod {