Skip to content

Commit 6a319f9

Browse files
author
David Brady
committed
Fixed punctuation
1 parent a90ec04 commit 6a319f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapters/arrays/max-array-value.textile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ You need to find the largest value contained in an array.
1010

1111
h2. Solution
1212

13-
In ECMAScript 5, use <tt>Array.reduce</tt>. In older javascripts, use Math.max over a list comprehension:
13+
In ECMAScript 5, use <tt>Array#reduce</tt>. In older javascripts, use Math.max over a list comprehension:
1414

1515
{% highlight coffeescript %}
1616
# ECMAScript 5

0 commit comments

Comments
 (0)