Skip to content

Commit c8884a5

Browse files
committed
Fix typo
1 parent a108fec commit c8884a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmake/modules/CMakeFunctions.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ endfunction()
6969
# Validates if given SHA1/tag/branch name exists in local repo
7070
function(is_valid_revision repo_dir revision return_val)
7171
message(STATUS "[OPENCL-CLANG] Validating ${revision} in repository")
72-
# Check if we have under revision exitsting branch/tag/SHA1 in this repo
72+
# Check if we have under revision existing branch/tag/SHA1 in this repo
7373
execute_process(
7474
COMMAND ${GIT_EXECUTABLE} log -1 ${revision}
7575
WORKING_DIRECTORY ${repo_dir}
@@ -78,9 +78,9 @@ function(is_valid_revision repo_dir revision return_val)
7878
OUTPUT_QUIET
7979
)
8080
if(${output_var} EQUAL 0)
81-
set(${return_val} True PARENT_SCOPE) # this tag/branch/sha1 existis in repo
81+
set(${return_val} True PARENT_SCOPE) # this tag/branch/sha1 exists in repo
8282
else()
83-
set(${return_val} False PARENT_SCOPE) # this tag/branch/sha1 not existis in repo
83+
set(${return_val} False PARENT_SCOPE) # this tag/branch/sha1 not exists in repo
8484
endif()
8585
endfunction()
8686

0 commit comments

Comments
 (0)