From 6c321382019fa969401b8e923a5e12ff69065561 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Sat, 7 Dec 2024 18:18:33 +0100 Subject: [PATCH] accumulate: move important hint to instructions (#1999) --- exercises/practice/accumulate/.docs/hints.md | 4 ---- exercises/practice/accumulate/.docs/instructions.append.md | 6 ++++++ 2 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 exercises/practice/accumulate/.docs/instructions.append.md diff --git a/exercises/practice/accumulate/.docs/hints.md b/exercises/practice/accumulate/.docs/hints.md index 082f60c16..6a6ecdf29 100644 --- a/exercises/practice/accumulate/.docs/hints.md +++ b/exercises/practice/accumulate/.docs/hints.md @@ -8,7 +8,3 @@ It may help to look at the Fn\* traits: Help with passing a closure into a function may be found in the ["closures as input parameters" section](https://doc.rust-lang.org/stable/rust-by-example/fn/closures/input_parameters.html) of [Rust by Example](https://doc.rust-lang.org/stable/rust-by-example/). - -The tests for this exercise will cause compile time errors, -if your function signature does not fit them, even when they're not run. -You may want to comment some tests out and generalize your solution piece by piece. diff --git a/exercises/practice/accumulate/.docs/instructions.append.md b/exercises/practice/accumulate/.docs/instructions.append.md new file mode 100644 index 000000000..3cdb30c2c --- /dev/null +++ b/exercises/practice/accumulate/.docs/instructions.append.md @@ -0,0 +1,6 @@ +# Instructions append + +## Workflow + +The tests for this exercise will cause compile time errors if your function signature does not fit them, even when they're not run. +You may want to comment some tests out and generalize your solution piece by piece.