Skip to content

Commit d7a7e0c

Browse files
change "ECMA5" to "ES5" in documentation
1 parent 2568ae0 commit d7a7e0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2566,7 +2566,7 @@ <h2 id="changelog">Change Log</h2>
25662566
first being called a specified number of times.
25672567
<tt>_.invoke</tt> can now take a direct function reference.
25682568
<tt>_.every</tt> now requires an iterator function to be passed, which
2569-
mirrors the ECMA5 API.
2569+
mirrors the ES5 API.
25702570
<tt>_.extend</tt> no longer copies keys when the value is undefined.
25712571
<tt>_.bind</tt> now errors when trying to bind an undefined value.
25722572
</p>
@@ -2599,13 +2599,13 @@ <h2 id="changelog">Change Log</h2>
25992599
In CommonJS, Underscore may now be required with just: <br />
26002600
<tt>var _ = require("underscore")</tt>.
26012601
Added <tt>_.throttle</tt> and <tt>_.debounce</tt> functions.
2602-
Removed <tt>_.breakLoop</tt>, in favor of an ECMA5-style un-<i>break</i>-able
2602+
Removed <tt>_.breakLoop</tt>, in favor of an ES5-style un-<i>break</i>-able
26032603
each implementation &mdash; this removes the try/catch, and you'll now have
26042604
better stack traces for exceptions that are thrown within an Underscore iterator.
26052605
Improved the <b>isType</b> family of functions for better interoperability
26062606
with Internet Explorer host objects.
26072607
<tt>_.template</tt> now correctly escapes backslashes in templates.
2608-
Improved <tt>_.reduce</tt> compatibility with the ECMA5 version:
2608+
Improved <tt>_.reduce</tt> compatibility with the ES5 version:
26092609
if you don't pass an initial value, the first item in the collection is used.
26102610
<tt>_.each</tt> no longer returns the iterated collection, for improved
26112611
consistency with ES5's <tt>forEach</tt>.

0 commit comments

Comments
 (0)