From 34a4fc322f4fb47711f62d9a75ef9925aec561c1 Mon Sep 17 00:00:00 2001 From: Jure Cuhalev Date: Sun, 10 Mar 2024 11:31:40 +0100 Subject: [PATCH] Update formatting in instructions.append.md for Difference of Squares --- .../practice/difference-of-squares/.docs/instructions.append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/difference-of-squares/.docs/instructions.append.md b/exercises/practice/difference-of-squares/.docs/instructions.append.md index cd64184e1..97f15dc31 100644 --- a/exercises/practice/difference-of-squares/.docs/instructions.append.md +++ b/exercises/practice/difference-of-squares/.docs/instructions.append.md @@ -1,5 +1,5 @@ # Hints For this exercise the following F# features come in handy: -https://fsharp.github.io/fsharp-core-docs/reference/fsharp-core-operators.html#(%20..%20)) allows you to succinctly create a range of values. +- [(..) start finish](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-core-operators.html#(..)) allows you to succinctly create a range of values. - [List.sumBy](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-collections-listmodule.html#sumBy) is a condensed format to apply a function to a list and then sum the results.