diff options
| author | Martin Cortez | 2013-09-27 22:53:36 -0500 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-09-30 21:44:35 +0100 | 
| commit | 0868a076e066334403cab92216cbc4cbac26c45e (patch) | |
| tree | e19376f71b75085c4df8a646edaa4518731e9b8c /src/ng/http.js | |
| parent | d79822e73ae7f4612c45be2c1d8c9968fdbccf43 (diff) | |
| download | angular.js-0868a076e066334403cab92216cbc4cbac26c45e.tar.bz2 | |
docs($http): update grammar in comments
Closes #4186
Diffstat (limited to 'src/ng/http.js')
| -rw-r--r-- | src/ng/http.js | 9 | 
1 files changed, 5 insertions, 4 deletions
| diff --git a/src/ng/http.js b/src/ng/http.js index 3b2ac8d6..8fdc0708 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -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 the +   * 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 = []; | 
