From 6f9f63772d14ab25b55644fe5fe36487dea5bb57 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 21 May 2020 18:15:22 -0600 Subject: [PATCH] Fix a missing space in an error message. --- source/base/discrete_time.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.5