This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1313 * [Kris Kowal's Q](https://github.com/kriskowal/q).
1414 *
1515 * $q can be used in two fashions --- one which is more similar to Kris Kowal's Q or jQuery's Deferred
16- * implementations, and the other which resembles ES6 promises to some degree.
16+ * implementations, and the other which resembles ES6 (ES2015) promises to some degree.
1717 *
1818 * # $q constructor
1919 *
2020 * The streamlined ES6 style promise is essentially just using $q as a constructor which takes a `resolver`
21- * function as the first argument. This is similar to the native Promise implementation from ES6 Harmony ,
21+ * function as the first argument. This is similar to the native Promise implementation from ES6,
2222 * see [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise).
2323 *
24- * While the constructor-style use is supported, not all of the supporting methods from ES6 Harmony promises are
24+ * While the constructor-style use is supported, not all of the supporting methods from ES6 promises are
2525 * available yet.
2626 *
2727 * It can be used like so:
You can’t perform that action at this time.
0 commit comments