From 40368dde011cba14e4bb9d6dcc3573ab24ff0a01 Mon Sep 17 00:00:00 2001 From: Anthony Porthouse Date: Fri, 9 Aug 2019 11:35:20 +0100 Subject: [PATCH] Correct typo of expolde to explode --- src/utils/openapi.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/openapi.ts b/src/utils/openapi.ts index 04a16b6b..aae62241 100644 --- a/src/utils/openapi.ts +++ b/src/utils/openapi.ts @@ -263,7 +263,7 @@ function serializeQueryParameter( return `${name}=${value.join('|')}`; case 'deepObject': if (!explode || Array.isArray(value) || typeof value !== 'object') { - console.warn('The style deepObject is only applicable for objects with expolde=true'); + console.warn('The style deepObject is only applicable for objects with explode=true'); return ''; }