From 5e9aba193b8dea9f4ea24bb8d449464e1ff1af50 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 15 Apr 2015 16:48:08 +0300 Subject: [PATCH] docs($http): minor fixes regarding params serializers --- src/ng/http.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ng/http.js b/src/ng/http.js index e4910219ff51..1b295f9908b7 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -61,7 +61,7 @@ function $HttpParamSerializerJQLikeProvider() { * @name $httpParamSerializerJQLike * @description * - * Alternative $http params serializer that follows jQuerys `param()` method {http://api.jquery.com/jquery.param/} logic. + * Alternative $http params serializer that follows jQuery's [`param()`](http://api.jquery.com/jquery.param/) method logic. * */ this.$get = function() { return paramSerializerFactory(true); @@ -214,8 +214,8 @@ function $HttpProvider() { * * - **`defaults.paramSerializer`** - {string|function(Object):string} - A function used to prepare string representation * of request parameters (specified as an object). - * Is specified as string, it is interpreted as function registered in with the {$injector}. - * Defaults to {$httpParamSerializer}. + * If specified as string, it is interpreted as a function registered with the {@link auto.$injector $injector}. + * Defaults to {@link ng.$httpParamSerializer $httpParamSerializer}. * **/ var defaults = this.defaults = {