From: Wolfgang Bangerth Date: Fri, 22 May 2020 00:15:22 +0000 (-0600) Subject: Fix a missing space in an error message. X-Git-Tag: v9.3.0-rc1~1596^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10303%2Fhead;p=dealii.git Fix a missing space in an error message. --- diff --git a/source/base/discrete_time.cc b/source/base/discrete_time.cc index 371ef361a4..1ce499e1a5 100644 --- a/source/base/discrete_time.cc +++ b/source/base/discrete_time.cc @@ -70,9 +70,9 @@ void DiscreteTime::advance_time() { Assert(next_time > current_time, - ExcMessage( - "You can't advance time further." - "Either dt == 0 or you are at the end of the simulation time.")); + ExcMessage("You can't advance time further. " + "Either dt==0 or you are at the " + "end of the simulation time.")); const double step_size = get_next_step_size(); previous_time = current_time; current_time = next_time;