From 73ceadd6d0ae81ee986a9a067876a49687a4d7f0 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 26 May 2020 17:40:02 -0500 Subject: [PATCH] address review comments --- include/deal.II/base/thread_local_storage.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/thread_local_storage.h b/include/deal.II/base/thread_local_storage.h index 90784d542f..216def42fc 100644 --- a/include/deal.II/base/thread_local_storage.h +++ b/include/deal.II/base/thread_local_storage.h @@ -252,10 +252,10 @@ namespace Threads // Note that std::map<..>::emplace guarantees that no iterators or // references to stored objects are invalidated. We thus only have to - // ensure that we do not performa a lookup while writing, and that we + // ensure that we do not perform a lookup while writing, and that we // do not write concurrently. This is precisely the "reader-writer // lock" paradigm supported by C++14 by means of the std::shared_lock - // and th std::unique_lock + // and the std::unique_lock. { // Take a shared ("reader") lock for lookup and record the fact -- 2.39.5