summaryrefslogtreecommitdiff
path: root/Utilities/Scripts
diff options
context:
space:
mode:
authorJosef Angstenberger <code@jtxa.de>2021-05-06 21:11:40 +0200
committerJosef Angstenberger <code@jtxa.de>2021-05-07 17:00:13 +0200
commit6dd719a4a51be02a5fa870f94743807ac856d10d (patch)
tree070b362ff638a32321aa24f01f12a2e2ba724599 /Utilities/Scripts
parenteaa860162c5c618833e19a66b36b1ee895a648a3 (diff)
downloadcmake-6dd719a4a51be02a5fa870f94743807ac856d10d.tar.gz
Utilities: Fix typos and spelling in comments
Diffstat (limited to 'Utilities/Scripts')
-rw-r--r--Utilities/Scripts/BoostScanDeps.cmake4
-rw-r--r--Utilities/Scripts/update-third-party.bash2
2 files changed, 3 insertions, 3 deletions
diff --git a/Utilities/Scripts/BoostScanDeps.cmake b/Utilities/Scripts/BoostScanDeps.cmake
index 5794d03e89..14c7f3cf8e 100644
--- a/Utilities/Scripts/BoostScanDeps.cmake
+++ b/Utilities/Scripts/BoostScanDeps.cmake
@@ -20,7 +20,7 @@
# "component". For each component, all the headers will be scanned to
# determine the components it depends upon by following all the
# possible includes from this component. This is to match the
-# behaviour of autolinking.
+# behavior of autolinking.
# Written by Roger Leigh <rleigh@codelibre.net>
@@ -86,7 +86,7 @@ function(_Boost_FIND_COMPONENT_DEPENDENCIES component includedir _ret_libs)
set(library_component TRUE)
set(_boost_unprocessed_headers "${BOOST_DIR}/test/test_exec_monitor.hpp")
else()
- # Default behaviour where header directory is the same as the library name.
+ # Default behavior where header directory is the same as the library name.
file(GLOB_RECURSE _boost_unprocessed_headers
RELATIVE "${includedir}"
"${includedir}/boost/${component}/*")
diff --git a/Utilities/Scripts/update-third-party.bash b/Utilities/Scripts/update-third-party.bash
index fcab871bdf..0d0a667c12 100644
--- a/Utilities/Scripts/update-third-party.bash
+++ b/Utilities/Scripts/update-third-party.bash
@@ -89,7 +89,7 @@ readonly basehash_regex="$name $regex_date ([0-9a-f]*)"
# Check for an empty destination directory on disk. By checking on disk and
# not in the repo it allows a library to be freshly re-inialized in a single
# commit rather than first deleting the old copy in one commit and adding the
-# new copy in a seperate commit.
+# new copy in a separate commit.
if [ ! -d "$(git rev-parse --show-toplevel)/$subtree" ]; then
readonly basehash=""
else