From 0cab43785bb8615b1c402dd3fe2fa21efe6f4fee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20I=2E=20Escudero?= Date: Tue, 16 Apr 2019 12:45:00 -0500 Subject: [PATCH] docs: fixed typo on HttpParamsOptions (#29930) PR Close #29930 --- packages/common/http/src/params.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/http/src/params.ts b/packages/common/http/src/params.ts index 5e35d6bce8..60a71ef2d0 100755 --- a/packages/common/http/src/params.ts +++ b/packages/common/http/src/params.ts @@ -83,7 +83,7 @@ export interface HttpParamsOptions { */ fromString?: string; - /** Object map of the HTTP params. Mutally exclusive with `fromString`. */ + /** Object map of the HTTP params. Mutually exclusive with `fromString`. */ fromObject?: {[param: string]: string | string[]}; /** Encoding codec used to parse and serialize the params. */