[llvm] ea90e28 - Fix typo
Adrian Prantl via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 1 08:53:34 PDT 2023
Author: Adrian Prantl
Date: 2023-08-01T08:53:18-07:00
New Revision: ea90e289d97dff0d9893cc4559aff6390bdb27d9
URL: https://github.com/llvm/llvm-project/commit/ea90e289d97dff0d9893cc4559aff6390bdb27d9
DIFF: https://github.com/llvm/llvm-project/commit/ea90e289d97dff0d9893cc4559aff6390bdb27d9.diff
LOG: Fix typo
Added:
Modified:
llvm/include/llvm/Support/RWMutex.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Support/RWMutex.h b/llvm/include/llvm/Support/RWMutex.h
index 984487f94c693c..04cf3eb3d3aa7a 100644
--- a/llvm/include/llvm/Support/RWMutex.h
+++ b/llvm/include/llvm/Support/RWMutex.h
@@ -19,7 +19,7 @@
#include <mutex>
#include <shared_mutex>
-// std::shared_timed_mutex is only availble on macOS 10.12 and later.
+// std::shared_timed_mutex is only available on macOS 10.12 and later.
#if defined(__APPLE__) && defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__)
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 101200
#define LLVM_USE_RW_MUTEX_IMPL
More information about the llvm-commits
mailing list