diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2005-08-02 16:04:59 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2005-08-02 16:04:59 +0000 |
commit | 15d89cba85e35823e546dc557cf8febc958561b1 (patch) | |
tree | 24910177ed6b4af58d6d9dff946ac24af3f162cd | |
parent | 8105c76da440280779a0b658318ac45edf5fccaa (diff) | |
download | external_llvm-15d89cba85e35823e546dc557cf8febc958561b1.zip external_llvm-15d89cba85e35823e546dc557cf8febc958561b1.tar.gz external_llvm-15d89cba85e35823e546dc557cf8febc958561b1.tar.bz2 |
Fix grammar: it's == "it is".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22587 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/System/Mutex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/Mutex.cpp b/lib/System/Mutex.cpp index 644e1d0..25c83e8 100644 --- a/lib/System/Mutex.cpp +++ b/lib/System/Mutex.cpp @@ -38,7 +38,7 @@ using namespace sys; // Note: all LLVM tools will link against -lpthread if its available since it // is configured into the LIBS variable. // Note: this line of code generates a warning if pthread_mutex_init is not -// declared with weak linkage. Its safe to ignore the warning. +// declared with weak linkage. It's safe to ignore the warning. static const bool pthread_enabled = static_cast<bool>(pthread_mutex_init); // Construct a Mutex using pthread calls |