From b86c49c47439b098dd6b587bb05fc0f235513d03 Mon Sep 17 00:00:00 2001 From: Convly Date: Wed, 31 Aug 2022 11:50:53 +0200 Subject: [PATCH] re - Fix instanciate => instantiate --- packages/core/strapi/lib/Strapi.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/strapi/lib/Strapi.js b/packages/core/strapi/lib/Strapi.js index 33e15aec04..715dfc351b 100644 --- a/packages/core/strapi/lib/Strapi.js +++ b/packages/core/strapi/lib/Strapi.js @@ -75,7 +75,7 @@ class Strapi { // Load the app configuration from the dist directory const appConfig = loadConfiguration({ appDir: rootDirs.app, distDir: rootDirs.dist }, opts); - // Instanciate the Strapi container + // Instantiate the Strapi container this.container = createContainer(this); // Register every Strapi registry in the container @@ -100,7 +100,7 @@ class Strapi { this.isLoaded = false; this.reload = this.reload(); - // Instanciate the Koa app & the HTTP server + // Instantiate the Koa app & the HTTP server this.server = createServer(this); // Strapi utils instanciation