mirror of
https://github.com/cemu-project/vcpkg.git
synced 2024-11-24 11:49:41 +00:00
[vcpkg] fix typos in error messages
This commit is contained in:
parent
2dab9a2576
commit
aa8883f71a
@ -583,7 +583,7 @@ namespace vcpkg
|
||||
candidates, [&](const Toolset* t) { return *tsv == t->version && *vsp == t->visual_studio_root_path; });
|
||||
Checks::check_exit(VCPKG_LINE_INFO,
|
||||
!candidates.empty(),
|
||||
"Could not find Visual Studio instace at %s with %s toolset.",
|
||||
"Could not find Visual Studio instance at %s with %s toolset.",
|
||||
vsp->u8string(),
|
||||
*tsv);
|
||||
|
||||
@ -595,7 +595,7 @@ namespace vcpkg
|
||||
{
|
||||
Util::stable_keep_if(candidates, [&](const Toolset* t) { return *tsv == t->version; });
|
||||
Checks::check_exit(
|
||||
VCPKG_LINE_INFO, !candidates.empty(), "Could not find Visual Studio instace with %s toolset.", *tsv);
|
||||
VCPKG_LINE_INFO, !candidates.empty(), "Could not find Visual Studio instance with %s toolset.", *tsv);
|
||||
}
|
||||
|
||||
if (vsp)
|
||||
@ -605,7 +605,7 @@ namespace vcpkg
|
||||
[&](const Toolset* t) { return vs_root_path == t->visual_studio_root_path; });
|
||||
Checks::check_exit(VCPKG_LINE_INFO,
|
||||
!candidates.empty(),
|
||||
"Could not find Visual Studio instace at %s.",
|
||||
"Could not find Visual Studio instance at %s.",
|
||||
vs_root_path.generic_string());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user