From 35bd0f6dabddd1c2e1c8c061be5886a1ec0a0d3e Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Tue, 11 Sep 2012 10:21:45 +0200 Subject: [PATCH] Typo --- src/timestepping.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/timestepping.cc b/src/timestepping.cc index 78d6e5ff..d8364346 100644 --- a/src/timestepping.cc +++ b/src/timestepping.cc @@ -45,7 +45,7 @@ template <class VectorType, class MatrixType, class FunctionType, int dim> class ImplicitEuler : public TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> { public: - // Work arond the fact that nobody implements constructor inheritance + // Work around the fact that nobody implements constructor inheritance template <class... Args> ImplicitEuler(Args &&... args) : TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim>(args...) { @@ -95,7 +95,7 @@ template <class VectorType, class MatrixType, class FunctionType, int dim> class ImplicitTwoStep : public TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> { public: - // Work arond the fact that nobody implements constructor inheritance + // Work around the fact that nobody implements constructor inheritance template <class... Args> ImplicitTwoStep(Args &&... args) : TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim>(args...) { -- GitLab