Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

docs($q): correct @ngdoc annotations for methods of $q #8784

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 15 additions & 11 deletions src/ng/q.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,10 @@ function qFactory(nextTick, exceptionHandler) {
}

/**
* @ngdoc
* @ngdoc method
* @name ng.$q#defer
* @methodOf ng.$q
* @kind function
*
* @description
* Creates a `Deferred` object which represents a task which will finish in the future.
*
Expand Down Expand Up @@ -402,9 +403,10 @@ function qFactory(nextTick, exceptionHandler) {
};

/**
* @ngdoc
* @name ng.$q#reject
* @methodOf ng.$q
* @ngdoc method
* @name $q#reject
* @kind function
*
* @description
* Creates a promise that is resolved as rejected with the specified `reason`. This api should be
* used to forward rejection in a chain of promises. If you are dealing with the last promise in
Expand Down Expand Up @@ -471,9 +473,10 @@ function qFactory(nextTick, exceptionHandler) {
};

/**
* @ngdoc
* @name ng.$q#when
* @methodOf ng.$q
* @ngdoc method
* @name $q#when
* @kind function
*
* @description
* Wraps an object that might be a value or a (3rd party) then-able promise into a $q promise.
* This is useful when you are dealing with an object that might or might not be a promise, or if
Expand All @@ -491,9 +494,10 @@ function qFactory(nextTick, exceptionHandler) {
};

/**
* @ngdoc
* @name ng.$q#all
* @methodOf ng.$q
* @ngdoc method
* @name $q#all
* @kind function
*
* @description
* Combines multiple promises into a single promise that is resolved when all of the input
* promises are resolved.
Expand Down