From c526c6f3a2254bddd731d6bdf8199e7a0f36b66b Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 23 Oct 2023 04:26:54 +0900 Subject: [PATCH] pref: fix typo in pref.v (#19624) --- vlib/v/pref/pref.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/pref/pref.v b/vlib/v/pref/pref.v index eea92d608d..5121db2aad 100644 --- a/vlib/v/pref/pref.v +++ b/vlib/v/pref/pref.v @@ -227,7 +227,7 @@ pub mut: skip_unused bool // skip generating C code for functions, that are not used // use_color ColorOutput // whether the warnings/errors should use ANSI color escapes. - cleanup_files []string // list of temporary *.tmp.c and *.tmp.c.rsp files. Cleaned up on successfull builds. + cleanup_files []string // list of temporary *.tmp.c and *.tmp.c.rsp files. Cleaned up on successful builds. build_options []string // list of options, that should be passed down to `build-module`, if needed for -usecache cache_manager vcache.CacheManager gc_mode GarbageCollectionMode = .unknown // .no_gc, .boehm, .boehm_leak, ...