From a0e50f1853866628b8540f3477c539aa4e3e708f Mon Sep 17 00:00:00 2001 From: Brad Date: Tue, 19 Jul 2016 18:35:04 -0400 Subject: [PATCH] docs($httpParamSerializer): Remove quote Remove superfluous quote from docs. --- 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 6f9d573baf13..158a4748e8c3 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -35,7 +35,7 @@ function $HttpParamSerializerProvider() { * * `{'foo': 'bar'}` results in `foo=bar` * * `{'foo': Date.now()}` results in `foo=2015-04-01T09%3A50%3A49.262Z` (`toISOString()` and encoded representation of a Date object) * * `{'foo': ['bar', 'baz']}` results in `foo=bar&foo=baz` (repeated key for each array element) - * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D"` (stringified and encoded representation of an object) + * * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D` (stringified and encoded representation of an object) * * Note that serializer will sort the request parameters alphabetically. * */