diff options
| author | Stanislav Ershov <digital.stream.of.mind@gmail.com> | 2018-01-06 13:01:06 +0300 |
|---|---|---|
| committer | Stanislav Ershov <digital.stream.of.mind@gmail.com> | 2018-01-06 13:01:06 +0300 |
| commit | aa8883f71a3cdef460df6eda7fd6db7bca242db4 (patch) | |
| tree | fc905937992b3de70f9a539ade3287018de34117 /toolsrc | |
| parent | 2dab9a2576a4f2c03d65abc9ad2668d2f34c6ba5 (diff) | |
| download | vcpkg-aa8883f71a3cdef460df6eda7fd6db7bca242db4.tar.gz vcpkg-aa8883f71a3cdef460df6eda7fd6db7bca242db4.zip | |
[vcpkg] fix typos in error messages
Diffstat (limited to 'toolsrc')
| -rw-r--r-- | toolsrc/src/vcpkg/vcpkgpaths.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/vcpkg/vcpkgpaths.cpp b/toolsrc/src/vcpkg/vcpkgpaths.cpp index 70d64de45..fa5fb128c 100644 --- a/toolsrc/src/vcpkg/vcpkgpaths.cpp +++ b/toolsrc/src/vcpkg/vcpkgpaths.cpp @@ -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()); } |
