From 93455eeb3fb414cd9531eee70dfccf8e6d93329c Mon Sep 17 00:00:00 2001 From: Stefan Meggendorfer <stefan.meggendorfer@gmail.de> Date: Tue, 16 Jul 2024 15:44:18 +0200 Subject: [PATCH] [params] typo in exercise --- 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 57bb2022..8d7ee372 100644 --- a/exercises/exercise-runtimeparams/README.md +++ b/exercises/exercise-runtimeparams/README.md @@ -25,7 +25,7 @@ Parameters can either be directly defined within your program, or specified via Parameters::init(argc, argv); ``` This will read in the parameters from the input file. -The input file should either be named the same as the executable file, with a trailing `*.input`, or be named `prarams.input` as this is the standard in our CMake system. +The input file should either be named the same as the executable file, with a trailing `*.input`, or be named `params.input` as this is the standard in our CMake system. Alternatively, arbitrarily named input files (e.g. `exercise1.input`) can be explicitly written as the first shell argument after the executable file (here `exercise_runtimeparams`) is called. ```bash -- GitLab