From b17d1a9aa3519552dd098db44b9031f4651fbe3c Mon Sep 17 00:00:00 2001 From: Vani Date: Fri, 22 Feb 2019 10:07:00 -0800 Subject: [PATCH] docs: update description text (#28507) PR Close #28507 --- packages/common/http/src/params.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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 */