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

Commit ce40d5c

Browse files
avianbcgkalpak
authored andcommitted
docs($httpParamSerializer): fix typo (remove superfluous quote)
Closes #14934
1 parent 5dfb328 commit ce40d5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/http.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function $HttpParamSerializerProvider() {
3535
* * `{'foo': 'bar'}` results in `foo=bar`
3636
* * `{'foo': Date.now()}` results in `foo=2015-04-01T09%3A50%3A49.262Z` (`toISOString()` and encoded representation of a Date object)
3737
* * `{'foo': ['bar', 'baz']}` results in `foo=bar&foo=baz` (repeated key for each array element)
38-
* * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D"` (stringified and encoded representation of an object)
38+
* * `{'foo': {'bar':'baz'}}` results in `foo=%7B%22bar%22%3A%22baz%22%7D` (stringified and encoded representation of an object)
3939
*
4040
* Note that serializer will sort the request parameters alphabetically.
4141
* */

0 commit comments

Comments
 (0)