From 15d89cba85e35823e546dc557cf8febc958561b1 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Tue, 2 Aug 2005 16:04:59 +0000 Subject: [PATCH] Fix grammar: it's == "it is". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22587 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Mutex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/System/Mutex.cpp b/lib/System/Mutex.cpp index 644e1d07053..25c83e848d0 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(pthread_mutex_init); // Construct a Mutex using pthread calls -- 2.34.1