diff --git a/packages/common/http/src/params.ts b/packages/common/http/src/params.ts index 1789bf5d0a..5e35d6bce8 100755 --- a/packages/common/http/src/params.ts +++ b/packages/common/http/src/params.ts @@ -22,11 +22,10 @@ export interface HttpParameterCodec { } /** - * A `HttpParameterCodec` that uses `encodeURIComponent` and `decodeURIComponent` to - * serialize and parse URL parameter keys and values. If URL query parameters are - * passed without encoding, they might be misinterpreted at the receiving end. Use the - * `HttpParameterCodec` to encode the query-string values. The same class can be used to decode the - * encoded query-string values. + * A class that uses `encodeURIComponent` and `decodeURIComponent` to + * serialize and parse URL parameter keys and values. If you pass URL query parameters + * without encoding, the query parameters can get misinterpreted at the receiving end. + * Use the `HttpParameterCodec` class to encode and decode the query-string values. * * @publicApi */