Skip to content
Snippets Groups Projects
Commit 35bd0f6d authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Typo

parent 2a336f94
No related branches found
No related tags found
No related merge requests found
......@@ -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...) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment