From d7636adc2c975fdfafcab5fbd209ec08a7214df3 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 24 May 2021 11:06:41 -0400 Subject: [PATCH] Fix typos --- include/deal.II/grid/tria_accessor.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/deal.II/grid/tria_accessor.h b/include/deal.II/grid/tria_accessor.h index 51b6b193d1..f814ef61ce 100644 --- a/include/deal.II/grid/tria_accessor.h +++ b/include/deal.II/grid/tria_accessor.h @@ -761,19 +761,19 @@ public: * this operation is not useful for iterators on triangulations. * Consequently, this operator is declared as deleted and can not be used. */ - void + TriaAccessor & operator=(const TriaAccessor &) = delete; /** - * Move assignemt operator. Moving is allowed. + * Move assignment operator. Moving is allowed. */ - void + TriaAccessor & operator=(TriaAccessor &&) = default; /** * Defaulted destructor. */ - ~TriaAcessor() = default; + ~TriaAccessor() = default; /** * Test for the element being used or not. The return value is @p true for -- 2.39.5