docs: update description text (#28507)

PR Close #28507
This commit is contained in:
Vani 2019-02-22 10:07:00 -08:00 committed by Miško Hevery
parent 60f6d9e733
commit b17d1a9aa3
1 changed files with 4 additions and 5 deletions

View File

@ -22,11 +22,10 @@ export interface HttpParameterCodec {
} }
/** /**
* A `HttpParameterCodec` that uses `encodeURIComponent` and `decodeURIComponent` to * A class that uses `encodeURIComponent` and `decodeURIComponent` to
* serialize and parse URL parameter keys and values. If URL query parameters are * serialize and parse URL parameter keys and values. If you pass URL query parameters
* passed without encoding, they might be misinterpreted at the receiving end. Use the * without encoding, the query parameters can get misinterpreted at the receiving end.
* `HttpParameterCodec` to encode the query-string values. The same class can be used to decode the * Use the `HttpParameterCodec` class to encode and decode the query-string values.
* encoded query-string values.
* *
* @publicApi * @publicApi
*/ */