From dd36d43b527d433bb7e2659cb0cd647439c935f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20No=C3=ABl?= Date: Fri, 25 Mar 2022 16:18:57 +0100 Subject: [PATCH] change wording didnt to doesnt --- packages/core/upload/server/bootstrap.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/upload/server/bootstrap.js b/packages/core/upload/server/bootstrap.js index 8e9dfa36fe..43b8c8b264 100644 --- a/packages/core/upload/server/bootstrap.js +++ b/packages/core/upload/server/bootstrap.js @@ -50,18 +50,18 @@ const createProvider = config => { const providerInstance = provider.init(providerOptions); if (!providerInstance.delete) { - throw new Error(`The upload provider "${providerName}" didn't implement the delete method.`); + throw new Error(`The upload provider "${providerName}" doesn't implement the delete method.`); } if (!providerInstance.upload && !providerInstance.uploadStream) { throw new Error( - `The upload provider "${providerName}" didn't implement the uploadStream nor the upload method.` + `The upload provider "${providerName}" doesn't implement the uploadStream nor the upload method.` ); } if (!providerInstance.uploadStream) { process.emitWarning( - `The upload provider "${providerName}" didn't implement the uploadStream function. Strapi will fallback on the upload method. Some performance issues may occur.` + `The upload provider "${providerName}" doesn't implement the uploadStream function. Strapi will fallback on the upload method. Some performance issues may occur.` ); }