re - Fix instanciate => instantiate

This commit is contained in:
Convly 2022-08-31 11:50:53 +02:00
parent d4688c716a
commit b86c49c474

View File

@ -75,7 +75,7 @@ class Strapi {
// Load the app configuration from the dist directory // Load the app configuration from the dist directory
const appConfig = loadConfiguration({ appDir: rootDirs.app, distDir: rootDirs.dist }, opts); const appConfig = loadConfiguration({ appDir: rootDirs.app, distDir: rootDirs.dist }, opts);
// Instanciate the Strapi container // Instantiate the Strapi container
this.container = createContainer(this); this.container = createContainer(this);
// Register every Strapi registry in the container // Register every Strapi registry in the container
@ -100,7 +100,7 @@ class Strapi {
this.isLoaded = false; this.isLoaded = false;
this.reload = this.reload(); this.reload = this.reload();
// Instanciate the Koa app & the HTTP server // Instantiate the Koa app & the HTTP server
this.server = createServer(this); this.server = createServer(this);
// Strapi utils instanciation // Strapi utils instanciation