Skip to content

Commit f04976a

Browse files
committed
Fix doc URLs
1 parent b184492 commit f04976a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ ELSE()
116116
SET(ISS_MIN_WIN_VERSION "6.1")
117117
ENDIF()
118118
# Define required version for MSVC
119-
# Details: https://docs.microsoft.com/en-en/windows/win32/winprog/using-the-windows-headers
119+
# Details: https://docs.microsoft.com/en-us/windows/win32/winprog/using-the-windows-headers
120120
IF(Qt6_FOUND)
121121
SET(MIN_WIN_VERSION "0x0A00")
122122
ELSE()
@@ -221,7 +221,7 @@ ENDIF()
221221

222222
# Add ASan (AddressSanitizer) build options if necessary
223223
# Details: https://github.com/google/sanitizers/wiki/AddressSanitizer
224-
# https://docs.microsoft.com/en-en/cpp/build/reference/fsanitize?view=msvc-150
224+
# https://docs.microsoft.com/en-us/cpp/build/reference/fsanitize?view=msvc-150
225225
IF(${CMAKE_BUILD_TYPE} MATCHES "ASan")
226226
IF(MSVC)
227227
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /fsanitize=address")
@@ -241,7 +241,7 @@ ENDIF()
241241

242242
# Add Fuzzer (Fuzzer Sanitizer) build options if necessary
243243
# Details: https://llvm.org/docs/LibFuzzer.html
244-
# https://docs.microsoft.com/en-en/cpp/build/reference/fsanitize?view=msvc-150
244+
# https://docs.microsoft.com/en-us/cpp/build/reference/fsanitize?view=msvc-150
245245
IF(${CMAKE_BUILD_TYPE} MATCHES "Fuzzer")
246246
IF(MSVC)
247247
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /fsanitize=fuzzer")

0 commit comments

Comments
 (0)