We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3d624a3 + 8e3bf94 commit e89bc1eCopy full SHA for e89bc1e
chapters/arrays/define-ranges.md
@@ -5,11 +5,11 @@ chapter: Arrays
5
---
6
## Problem
7
8
-You want to define range in array.
+You want to define a range in an array.
9
10
## Solution
11
12
-There are two method to define range of an array element in CoffeeScript.
+There are two ways to define a range of array elements in CoffeeScript.
13
14
{% highlight coffeescript %}
15
@@ -44,4 +44,4 @@ myLargeArray = [10...1]
44
45
Inclusive range always define by '..' operator.
46
47
-Exclusive range difine by '...', and always omit the last value.
+Exclusive range define by '...', and always omit the last value.
0 commit comments