From: Wolfgang Bangerth Date: Tue, 20 Jun 2017 09:19:24 +0000 (-0600) Subject: Fix a couple of typos. X-Git-Tag: v9.0.0-rc1~1488^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4531%2Fhead;p=dealii.git Fix a couple of typos. --- diff --git a/include/deal.II/base/work_stream.h b/include/deal.II/base/work_stream.h index da144e51c4..cf2a49f318 100644 --- a/include/deal.II/base/work_stream.h +++ b/include/deal.II/base/work_stream.h @@ -1071,7 +1071,7 @@ namespace WorkStream // essentially apply parallel_for. because parallel_for // requires subdividing the range for which operator- is // necessary between iterators, it is often inefficient to - // apply it directory to cell ranges and similar iterator + // apply it directly to cell ranges and similar iterator // types for which operator- is expensive or, in fact, // nonexistent. rather, in that case, we simply copy the // iterators into a large array and use operator- on diff --git a/include/deal.II/dofs/dof_accessor.templates.h b/include/deal.II/dofs/dof_accessor.templates.h index ea91aa3caf..37b8f4e925 100644 --- a/include/deal.II/dofs/dof_accessor.templates.h +++ b/include/deal.II/dofs/dof_accessor.templates.h @@ -89,7 +89,7 @@ DoFAccessor::DoFAccessor Assert (false, ExcMessage("You are trying to assign iterators that are incompatible. " "Reasons for incompatibility are that they point to different " "types of DoFHandlers (e.g., dealii::DoFHandler and " - "dealii::hp::DoFHandler) or that the refer to objects of " + "dealii::hp::DoFHandler) or that they refer to objects of " "different dimensionality (e.g., assigning a line iterator " "to a quad iterator).")); }