From ed5872814af4b5daf2a2b341c02e9754cfe86aa8 Mon Sep 17 00:00:00 2001 From: Gavin McGimpsey Date: Fri, 13 Oct 2023 21:13:45 -0700 Subject: [PATCH] Update instructions.md to reflect expected function signature The instructions had used the singular to describe the arguments expected by `record`, rather than the plural. --- exercises/concept/expert-experiments/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/expert-experiments/.docs/instructions.md b/exercises/concept/expert-experiments/.docs/instructions.md index f76659106..3b0175fa4 100644 --- a/exercises/concept/expert-experiments/.docs/instructions.md +++ b/exercises/concept/expert-experiments/.docs/instructions.md @@ -48,7 +48,7 @@ Define the `run_experiment` function that takes four arguments: - The name of the experiment as a `String`. - A setup function which takes no arguments and returns a result. - An action function which takes the `Ok` value of the setup function as an argument and returns a result. -- A recording function which takes the `Ok` value of the setup and functions as an arguments and returns a result. +- A recording function which takes the `Ok` value of the setup and action functions as arguments and returns a result. If all three functions succeed then `run_experiment` should return `Ok(#(experiment_name, recording_data))`.