From df3d941c574eca53c667d2ba2219eb660d2b58bd Mon Sep 17 00:00:00 2001 From: Joey Yang Date: Mon, 16 Jun 2014 15:03:42 -0700 Subject: [PATCH] docs($http): fix broken markdown link in withCredentials description Markdown typo in $http config documentation Closes #7859 --- src/ng/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/http.js b/src/ng/http.js index 40e083da..e1839b2f 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -577,7 +577,7 @@ function $HttpProvider() { * - **timeout** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise} * that should abort the request when resolved. * - **withCredentials** - `{boolean}` - whether to set the `withCredentials` flag on the - * XHR object. See [requests with credentials]https://developer.mozilla.org/en/http_access_control#section_5 + * XHR object. See [requests with credentials](https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Requests_with_credentials) * for more information. * - **responseType** - `{string}` - see * [requestType](https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest#responseType).