From 2175199069ff86a10b5dadb0e1ffb32e2a7b83d2 Mon Sep 17 00:00:00 2001 From: larslawo02 Date: Wed, 19 Aug 2026 12:37:05 +0200 Subject: [PATCH] Update instructions.append.md Fixed spelling error --- exercises/practice/raindrops/.docs/instructions.append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/raindrops/.docs/instructions.append.md b/exercises/practice/raindrops/.docs/instructions.append.md index 9558c339345..8f478c65be2 100644 --- a/exercises/practice/raindrops/.docs/instructions.append.md +++ b/exercises/practice/raindrops/.docs/instructions.append.md @@ -11,7 +11,7 @@ Python also offers additional 'remainder' methods in the [math module][math-modu [`math.remainder()`][remainder] implements a "step closest to zero" algorithm for the remainder of division. While we encourage you to get familiar with these methods, neither of these will exactly match the result of `%`, and are not recommended for use with this exercise. -The built-in function [`divmod()`][divmod] will also give a remainder than matches `%` if used with two positive integers, but returns a `tuple` that needs to be unpacked. +The built-in function [`divmod()`][divmod] will also give a remainder that matches `%` if used with two positive integers, but returns a `tuple` that needs to be unpacked. [divmod]: https://docs.python.org/3/library/functions.html#divmod [fmod]: https://docs.python.org/3/library/math.html#math.fmod