From fc2daf1bf8a0f543980a4cf2955a885891ef5f2f Mon Sep 17 00:00:00 2001 From: Darin Adler Date: Wed, 19 Sep 2001 15:04:41 +0000 Subject: [PATCH] Fix typos in comments. [SVN r11148] --- include/boost/config/posix_features.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/config/posix_features.hpp b/include/boost/config/posix_features.hpp index b23d8992..e8e23912 100644 --- a/include/boost/config/posix_features.hpp +++ b/include/boost/config/posix_features.hpp @@ -23,9 +23,9 @@ // POSIX defines _POSIX_THREADS > 0 for pthread support, // however some platforms define _POSIX_THREADS without // a value, hence the (_POSIX_THREADS+0 >= 0) check. - // Strictly speeking this may catch platforms with a + // Strictly speaking this may catch platforms with a // non-functioning stub , but such occurrences should - // occur very rarely if at all... + // occur very rarely if at all. # if defined(_POSIX_THREADS) && (_POSIX_THREADS+0 >= 0) # define BOOST_HAS_PTHREADS # endif