0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixed typos

no issue
This commit is contained in:
Naz 2021-11-30 11:38:53 +04:00 committed by naz
parent 2ed1d5c2cc
commit 6aee35ec3d

View file

@ -163,7 +163,7 @@ const freshModeGhostStart = async (options) => {
// Reset the settings cache and disable listeners so they don't get triggered further
settingsService.shutdown();
// Do a full database initialisation
// Do a full database initialization
await knexMigrator.init();
await settingsService.init();
@ -171,7 +171,7 @@ const freshModeGhostStart = async (options) => {
// Actually boot Ghost
await bootGhost(options);
// Wait for the URL service to be ready, which happens after bootYou
// Wait for the URL service to be ready, which happens after boot
if (options.frontend) {
await urlServiceUtils.isFinished();
}