From 60f6d9e733500b5987f58826b1b52c28c71c7afb Mon Sep 17 00:00:00 2001 From: Vani Date: Wed, 20 Feb 2019 20:44:44 -0800 Subject: [PATCH] docs: fix lint error (#28507) PR Close #28507 --- packages/common/http/src/params.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/common/http/src/params.ts b/packages/common/http/src/params.ts index 3e037ba4a3..1789bf5d0a 100755 --- a/packages/common/http/src/params.ts +++ b/packages/common/http/src/params.ts @@ -14,11 +14,11 @@ * @publicApi **/ export interface HttpParameterCodec { - encodeKey(key: string):string; - encodeValue(value: string):string; + encodeKey(key: string): string; + encodeValue(value: string): string; - decodeKey(key: string):string; - decodeValue(value: string):string; + decodeKey(key: string): string; + decodeValue(value: string): string; } /**