diff --git a/snippets/arithmetic_progression.md b/snippets/arithmetic_progression.md index f270782e7..fda2d2002 100644 --- a/snippets/arithmetic_progression.md +++ b/snippets/arithmetic_progression.md @@ -9,7 +9,7 @@ Use the `range` function and step up the same integer to find multiples. ```py def find_multiples(integer, limit): - return list(range(integer,limit+1, integer)) + return list(range(integer,limit+1, integer)) ``` ```py