Browse Source

Update Generate Range of Integers.md

PythonCoder8 3 years ago
parent
commit
54eb142b0f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      8 kyu/Generate Range of Integers/Generate Range of Integers.md

+ 1 - 1
8 kyu/Generate Range of Integers/Generate Range of Integers.md

@@ -1,6 +1,6 @@
 # 8 kyu - Generate Range of Integers - Authored by XxxX88
 
-Link to Kata: https://www.codewars.com/kata/55eca815d0d20962e1000106
+Link to kata: https://www.codewars.com/kata/55eca815d0d20962e1000106
 
 Implement a function named generateRange(min, max, step), which takes three arguments and generates a range of integers from min to max, with the step. The first integer is the minimum value, the second is the maximum of the range and the third is the step. (min < max)