summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-01-11 15:18:34 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-01-11 15:18:54 (GMT)
commit30fcb925762280b3a904f8f2598449927414ebd6 (patch)
tree8a1958bf99f8eed87659f6937911259e84e73b61
parentfe8d74cc6022b814f08486df3b575c1dbe875f18 (diff)
parentd91b2d9158cbe5d65bfcc8f7512503d7f226ad91 (diff)
downloadCMake-30fcb925762280b3a904f8f2598449927414ebd6.zip
CMake-30fcb925762280b3a904f8f2598449927414ebd6.tar.gz
CMake-30fcb925762280b3a904f8f2598449927414ebd6.tar.bz2
Merge topic 'misc-typos'
d91b2d91 MAINT: Misc. typos Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !1654
-rw-r--r--Help/release/dev/iphone-deployment-target.rst2
-rw-r--r--Modules/FindCUDA.cmake2
-rw-r--r--Tests/FindOpenSSL/rand/main.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/Help/release/dev/iphone-deployment-target.rst b/Help/release/dev/iphone-deployment-target.rst
index e586df6..7a20a6d 100644
--- a/Help/release/dev/iphone-deployment-target.rst
+++ b/Help/release/dev/iphone-deployment-target.rst
@@ -7,5 +7,5 @@ iphone-deployment-target
set for the target platform selected by :variable:`CMAKE_OSX_SYSROOT`.
If for example the sysroot variable specifies an iOS SDK then the
- value in ``CMAKE_OSX_DEPLOYMENT_TARGET`` is interpreted as minium
+ value in ``CMAKE_OSX_DEPLOYMENT_TARGET`` is interpreted as minimum
iOS version.
diff --git a/Modules/FindCUDA.cmake b/Modules/FindCUDA.cmake
index 321121c..0decbb5 100644
--- a/Modules/FindCUDA.cmake
+++ b/Modules/FindCUDA.cmake
@@ -104,7 +104,7 @@
# CUDA_NVCC_FLAGS_<CONFIG> variables. For Visual Studio targets,
# the host compiler is constructed with one or more visual studio macros
# such as $(VCInstallDir), that expands out to the path when
-# the command is run from withing VS.
+# the command is run from within VS.
#
# CUDA_NVCC_FLAGS
# CUDA_NVCC_FLAGS_<CONFIG>
diff --git a/Tests/FindOpenSSL/rand/main.cc b/Tests/FindOpenSSL/rand/main.cc
index d81b318..147044b 100644
--- a/Tests/FindOpenSSL/rand/main.cc
+++ b/Tests/FindOpenSSL/rand/main.cc
@@ -9,7 +9,7 @@ int main()
unsigned char buf[1024];
// random bytes
- int rezval = RAND_bytes(buf, sizeof(buf)); /* 1 succes, 0 otherwise */
+ int rezval = RAND_bytes(buf, sizeof(buf)); /* 1 success, 0 otherwise */
// check result
if (rezval == 1) {