@@ -145,7 +145,7 @@ class InstallOptions:
145145 "mrdocs_src_dir" : "MrDocs source directory." ,
146146 "mrdocs_repo" : "URL of the MrDocs repository to clone." ,
147147 "mrdocs_branch" : "Branch or tag of the MrDocs repository to use." ,
148- "mrdocs_build_type" : "CMake build type for MrDocs (Release, Debug, RelWithDebInfo, MilRelSize )." ,
148+ "mrdocs_build_type" : "CMake build type for MrDocs (Release, Debug, RelWithDebInfo, MinRelSize )." ,
149149 "mrdocs_use_user_presets" : "Whether to use CMake User Presets for building MrDocs." ,
150150 "mrdocs_preset_name" : "Name of the CMake User Preset to use for MrDocs." ,
151151 "mrdocs_build_dir" : "Directory where MrDocs will be built." ,
@@ -156,7 +156,7 @@ class InstallOptions:
156156 "third_party_src_dir" : "Directory for all third-party source dependencies." ,
157157 "duktape_src_dir" : "Directory for the Duktape source code." ,
158158 "duktape_url" : "Download URL for the Duktape source archive." ,
159- "duktape_build_type" : "CMake build type for Duktape. (Release, Debug, RelWithDebInfo, MilRelSize )" ,
159+ "duktape_build_type" : "CMake build type for Duktape. (Release, Debug, RelWithDebInfo, MinRelSize )" ,
160160 "duktape_build_dir" : "Directory where Duktape will be built." ,
161161 "duktape_install_dir" : "Directory where Duktape will be installed." ,
162162 "lua_src_dir" : "Directory for the Lua source code." ,
@@ -165,13 +165,13 @@ class InstallOptions:
165165 "lua_build_dir" : "Directory where Lua will be built." ,
166166 "lua_install_dir" : "Directory where Lua will be installed." ,
167167 "libxml2_src_dir" : "Directory for the libxml2 source code." ,
168- "libxml2_build_type" : "CMake build type for libxml2: Release always recommended. (Release, Debug, RelWithDebInfo, MilRelSize )" ,
168+ "libxml2_build_type" : "CMake build type for libxml2: Release always recommended. (Release, Debug, RelWithDebInfo, MinRelSize )" ,
169169 "libxml2_build_dir" : "Directory where libxml2 will be built." ,
170170 "libxml2_install_dir" : "Directory where libxml2 will be installed." ,
171171 "libxml2_repo" : "URL of the libxml2 repository to clone." ,
172172 "libxml2_branch" : "Branch or tag of libxml2 to use." ,
173173 "llvm_src_dir" : "Directory for the LLVM project source code." ,
174- "llvm_build_type" : "CMake build type for LLVM. (Release, Debug, RelWithDebInfo, MilRelSize )" ,
174+ "llvm_build_type" : "CMake build type for LLVM. (Release, Debug, RelWithDebInfo, MinRelSize )" ,
175175 "llvm_build_dir" : "Directory where LLVM will be built." ,
176176 "llvm_install_dir" : "Directory where LLVM will be installed." ,
177177 "llvm_repo" : "URL of the LLVM project repository to clone." ,
@@ -305,8 +305,8 @@ def prompt_option(self, name, force_prompt=False):
305305
306306 # Replace placeholders in the default value
307307 if isinstance (default_value , str ):
308- constains_placeholder = "<" in default_value and ">" in default_value
309- if constains_placeholder :
308+ contains_placeholder = "<" in default_value and ">" in default_value
309+ if contains_placeholder :
310310 has_dir_key = False
311311
312312 def repl (match ):
0 commit comments