From 9371d9a4fd0230669f2b8cbba94e5f7b3cdb8957 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 5 Aug 2015 20:16:31 -0500 Subject: [PATCH] Fix erroneous wrap of compound word. --- include/deal.II/base/subscriptor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/subscriptor.h b/include/deal.II/base/subscriptor.h index 11a151c1e4..2050f2e871 100644 --- a/include/deal.II/base/subscriptor.h +++ b/include/deal.II/base/subscriptor.h @@ -177,8 +177,8 @@ private: * constant objects also. * * In multithreaded mode, this counter may be modified by different threads. - * We thus have to mark it volatile. However, this is counter- - * productive in non-MT mode since it may pessimize code. So use the macro + * We thus have to mark it volatile. However, this is + * counter-productive in non-MT mode since it may pessimize code. So use the macro * defined in deal.II/base/config.h to selectively add volatility. */ mutable DEAL_VOLATILE unsigned int counter; -- 2.39.5