From 969f9d6720bfa7f867a65af42c80b50f5c3566b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=C3=B3rio=20Miranda?= Date: Sun, 30 Aug 2026 20:18:00 +0000 Subject: [PATCH] Add link to the integer division function in the instructions Just a little tweak, making more explicit what "integer function" refers to. --- exercises/concept/secrets/.docs/instructions.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/exercises/concept/secrets/.docs/instructions.md b/exercises/concept/secrets/.docs/instructions.md index db312afc7..cfc812048 100644 --- a/exercises/concept/secrets/.docs/instructions.md +++ b/exercises/concept/secrets/.docs/instructions.md @@ -46,7 +46,7 @@ divider.(32) # => 10 ``` -Make use of integer division so the output is compatible with the other functions' expected input. +Make use of [integer division][div] so the output is compatible with the other functions' expected input. ## 5. Create an "and"-er @@ -80,3 +80,5 @@ combined = Secrets.secret_combine(add_one, multiply_by_2) combined.(3) # => 8 ``` + +[div]: https://hexdocs.pm/elixir/Kernel.html#div/2