diff --git a/src/ng/q.js b/src/ng/q.js index 32237dadf4b4..ef7c84226940 100644 --- a/src/ng/q.js +++ b/src/ng/q.js @@ -6,7 +6,11 @@ * @requires $rootScope * * @description - * A promise/deferred implementation inspired by [Kris Kowal's Q](https://github.com/kriskowal/q). + * A service that helps you run functions asynchronously, and use their return values (or exceptions) + * when they are done processing. + * + * This is an implementation of promises/deferred objects inspired by + * [Kris Kowal's Q](https://github.com/kriskowal/q). * * $q can be used in two fashions --- one which is more similar to Kris Kowal's Q or jQuery's Deferred * implementations, and the other which resembles ES6 promises to some degree.