From 10fd98764eaf04efad2d07b2864d46d9128a266e Mon Sep 17 00:00:00 2001 From: Animesh <54435702+AnimeshRy@users.noreply.github.com> Date: Tue, 28 Jul 2020 16:29:25 +0530 Subject: [PATCH] Updated the indent to 2 spaced Updated everything according to the comments --- snippets/arithmetic_progression.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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