From: Matthias Maier Date: Tue, 9 Oct 2018 21:20:22 +0000 (-0500) Subject: fix typos X-Git-Tag: v9.1.0-rc1~643^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7316%2Fhead;p=dealii.git fix typos --- diff --git a/tests/base/reference.cc b/tests/base/reference.cc index a9f0d7951b..73a43d409f 100644 --- a/tests/base/reference.cc +++ b/tests/base/reference.cc @@ -125,10 +125,10 @@ main() // an ExcNotUsed and aborts the program. BUT, this is a unit test and so, // aborting on exception is disabled and we continue execution. // Unfortunately, this triggers a "use after scope" memory access error - // when finally "Test R" goes out of scope and tries to unsubsribe from D - // that already got destructed. + // when finally "Test R" goes out of scope and tries to unsubscribe from + // D that already got destroyed. // - // Work around this issue by creating a sentinel that gets destructed + // Work around this issue by creating a sentinel that gets destroyed // after D but before "Test R" that simply resets the SmartPointer. Sentinel sentinel(r);