From: Matthias Maier Date: Tue, 26 May 2020 22:40:02 +0000 (-0500) Subject: address review comments X-Git-Tag: v9.3.0-rc1~1535^2~7 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=73ceadd6d0ae81ee986a9a067876a49687a4d7f0;p=dealii.git address review comments --- 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