From a96dae91e4146dc67637d8fdbf6f0c4f46782229 Mon Sep 17 00:00:00 2001 From: melaniel <melanie.lipp@iws.uni-stuttgart.de> Date: Tue, 17 Jul 2018 11:42:16 +0200 Subject: [PATCH] Fix typo. --- exercises/exercise-runtimeparams/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/exercise-runtimeparams/README.md b/exercises/exercise-runtimeparams/README.md index b6fd11b2..d800c62d 100644 --- a/exercises/exercise-runtimeparams/README.md +++ b/exercises/exercise-runtimeparams/README.md @@ -66,7 +66,7 @@ values[Indices::conti0EqIdx + FluidSystem::H2OIdx] = 0.0; This parameter may need to change, and if we choose to always change this within the class, we will need to recompile every time. -Instead of hard defining this parameter within the funciton, we can set a variable to read into our parameter tree via the input file and use this in our function instead. +Instead of hard defining this parameter within the function, we can set a variable to read into our parameter tree via the input file and use this in our function instead. To do this, there are two functions defined in `dumux/dumux/common/parameters.hh`, `getParam()` and `getParamFromGroup()`. They use the following format: ```c++ -- GitLab