Skip to content

Commit e89bc1e

Browse files
committed
Merge branch 'bug_fixes'
2 parents 3d624a3 + 8e3bf94 commit e89bc1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chapters/arrays/define-ranges.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ chapter: Arrays
55
---
66
## Problem
77

8-
You want to define range in array.
8+
You want to define a range in an array.
99

1010
## Solution
1111

12-
There are two method to define range of an array element in CoffeeScript.
12+
There are two ways to define a range of array elements in CoffeeScript.
1313

1414
{% highlight coffeescript %}
1515

@@ -44,4 +44,4 @@ myLargeArray = [10...1]
4444

4545
Inclusive range always define by '..' operator.
4646

47-
Exclusive range difine by '...', and always omit the last value.
47+
Exclusive range define by '...', and always omit the last value.

0 commit comments

Comments
 (0)