aboutsummaryrefslogtreecommitdiff
path: root/docs/users
diff options
context:
space:
mode:
authorBo Rydberg <2945606+bolry@users.noreply.github.com>2019-03-11 04:31:02 +0100
committerVictor Romero <romerosanchezv@gmail.com>2019-03-10 20:31:02 -0700
commitc247a7d21f5835d43b6eaa5507e1b34b6803c54c (patch)
treedcc6316f253f37db49e12e8d2ff17d60ef072ae4 /docs/users
parenteafe9ebcdf191ad0fff98c0f060000edb208318d (diff)
downloadvcpkg-c247a7d21f5835d43b6eaa5507e1b34b6803c54c.tar.gz
vcpkg-c247a7d21f5835d43b6eaa5507e1b34b6803c54c.zip
Fix minor spelling mistakes in documentation (#5620)
Diffstat (limited to 'docs/users')
-rw-r--r--docs/users/integration.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users/integration.md b/docs/users/integration.md
index 6d56c7c70..cd5f61e9d 100644
--- a/docs/users/integration.md
+++ b/docs/users/integration.md
@@ -139,7 +139,7 @@ You can set `VCPKG_TARGET_TRIPLET` on the configure line:
```no-highlight
cmake ../my/project -DVCPKG_TARGET_TRIPLET=x64-windows-static -DCMAKE_TOOLCHAIN_FILE=...
```
-If you use `VCPKG_DEFAULT_TRIPLET` [environment variable](config-environment.md) to contoll the unqualified triplet in vcpkg command lines you can default `VCPKG_TARGET_TRIPLET` in CMake like [Using an environment variable instead of a command line option](#using-an-environment-variable-instead-of-a-command-line-option):
+If you use `VCPKG_DEFAULT_TRIPLET` [environment variable](config-environment.md) to control the unqualified triplet in vcpkg command lines you can default `VCPKG_TARGET_TRIPLET` in CMake like [Using an environment variable instead of a command line option](#using-an-environment-variable-instead-of-a-command-line-option):
```cmake
if(DEFINED ENV{VCPKG_DEFAULT_TRIPLET} AND NOT DEFINED VCPKG_TARGET_TRIPLET)