aboutsummaryrefslogtreecommitdiff
path: root/docs/examples
diff options
context:
space:
mode:
authorKai Pastor <dg0yt@darc.de>2021-05-09 19:48:42 +0200
committerGitHub <noreply@github.com>2021-05-09 10:48:42 -0700
commit5a271a9290282e09149401486f88dc106dc65b71 (patch)
tree05eb8b9453718a3f6e5c70b84946a86b81fef1c2 /docs/examples
parentf44d4c169f1b81a6188b330dbd837881ffb9ef2b (diff)
downloadvcpkg-5a271a9290282e09149401486f88dc106dc65b71.tar.gz
vcpkg-5a271a9290282e09149401486f88dc106dc65b71.zip
[doc] Fix spelling errors (#17560)
* [doc] Fix spelling errors in docs * [doc] Fix spelling errors in scripts * Bump version * x-add-version * Fix another typo * Rebuild
Diffstat (limited to 'docs/examples')
-rw-r--r--docs/examples/modify-baseline-to-pin-old-boost.md2
-rw-r--r--docs/examples/vcpkg_android_example_cmake_script/cmake/vcpkg_android.cmake2
-rw-r--r--docs/examples/versioning.getting-started.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/modify-baseline-to-pin-old-boost.md b/docs/examples/modify-baseline-to-pin-old-boost.md
index b8354c051..72e285f38 100644
--- a/docs/examples/modify-baseline-to-pin-old-boost.md
+++ b/docs/examples/modify-baseline-to-pin-old-boost.md
@@ -147,7 +147,7 @@ git rev-parse HEAD
The output of that command will be the commit SHA you need to put as the `"builtin-baseline"` in your project's manifest file. Copy the 40-hex digits and save them to use later in your manifest file.
### Step 5: (Optional) Go back to the main repository branch
-Once your changes have been commited locally, you can refer to the commit SHA regardless of the repository branch you're working on. So, let's go back to the main vcpkg repository branch.
+Once your changes have been committed locally, you can refer to the commit SHA regardless of the repository branch you're working on. So, let's go back to the main vcpkg repository branch.
```
git checkout master
diff --git a/docs/examples/vcpkg_android_example_cmake_script/cmake/vcpkg_android.cmake b/docs/examples/vcpkg_android_example_cmake_script/cmake/vcpkg_android.cmake
index ce6cc4a61..3f09b1114 100644
--- a/docs/examples/vcpkg_android_example_cmake_script/cmake/vcpkg_android.cmake
+++ b/docs/examples/vcpkg_android_example_cmake_script/cmake/vcpkg_android.cmake
@@ -57,7 +57,7 @@ if (VCPKG_TARGET_ANDROID)
# |x64-android | x86_64 |
# |x86-android | x86 |
#
- # The variable must be stored in the cache in order to successfuly the two toolchains.
+ # The variable must be stored in the cache in order to successfully the two toolchains.
#
if (ANDROID_ABI MATCHES "arm64-v8a")
set(VCPKG_TARGET_TRIPLET "arm64-android" CACHE STRING "" FORCE)
diff --git a/docs/examples/versioning.getting-started.md b/docs/examples/versioning.getting-started.md
index e221c0013..e523af592 100644
--- a/docs/examples/versioning.getting-started.md
+++ b/docs/examples/versioning.getting-started.md
@@ -42,7 +42,7 @@ project(myapp)
## Using versions with manifests
-With the `versions` feature flag enabled you can start addding version constraints to your dependencies.
+With the `versions` feature flag enabled you can start adding version constraints to your dependencies.
Let's start with creating a simple CMake project that depends on `fmt` and `zlib`.