From c2e70eb078583e6fd71c905a04b9d40a29ef96fa Mon Sep 17 00:00:00 2001 From: Eric Willigers Date: Fri, 26 Jun 2026 16:33:03 +1000 Subject: [PATCH] signalers-satchel: simplify markup This is an attempt to avoid the issues reported in http://forum.exercism.org/t/factor-track-feedback/60226/11 http://forum.exercism.org/t/factor-track-feedback/60226/13 --- exercises/concept/signalers-satchel/.docs/instructions.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/exercises/concept/signalers-satchel/.docs/instructions.md b/exercises/concept/signalers-satchel/.docs/instructions.md index 8ab31e80..17b2d167 100644 --- a/exercises/concept/signalers-satchel/.docs/instructions.md +++ b/exercises/concept/signalers-satchel/.docs/instructions.md @@ -41,9 +41,8 @@ return *both* the header slice and the body slice. ## 4. Triangulate from two readings Two consecutive signal readings give three derived measurements: -their **difference** (`a - b`), their **midpoint** (`(a + b) / 2`), -and their **ratio** (`a / b`). Each measurement uses *both* -readings. +their *difference* `a - b`, their *midpoint* `(a + b) / 2`, +and their *ratio* `a / b`. Each measurement uses both readings. Define `triangulate` to return all three from a pair of readings.