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

updates grammar in http.js comments #4186

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
9 changes: 5 additions & 4 deletions src/ng/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,14 @@ function $HttpProvider() {
};

/**
* Are order by request. I.E. they are applied in the same order as
* array on request, but revers order on response.
* Are ordered by request, i.e. they are applied in the same order as
* array on request, but reverse order on response.
*/
var interceptorFactories = this.interceptors = [];

/**
* For historical reasons, response interceptors ordered by the order in which
* they are applied to response. (This is in revers to interceptorFactories)
* For historical reasons, response interceptors are ordered by the order in which
* they are applied to the response. (This is the opposite of interceptorFactories)
*/
var responseInterceptorFactories = this.responseInterceptors = [];

Expand Down