From ce1711735f85f3d85f0bc5fb9399d51ceb45b1e4 Mon Sep 17 00:00:00 2001 From: Naz Date: Tue, 20 Jul 2021 17:27:11 +0400 Subject: [PATCH] Swapped to American English spellings refs https://github.com/TryGhost/Ghost/commit/16728a3ef135851a7cc7c7c70c0f1b48f32096b5 - Same reason as in refed commit, ltdc: - Traditionally all of Ghost's public-facing text was written in British English - We're changing that to US English because that's more common - US English should also be used in code e.g. properties are called color not colour --- core/boot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/boot.js b/core/boot.js index 488c5fa355..7d0b0d4cb6 100644 --- a/core/boot.js +++ b/core/boot.js @@ -162,7 +162,7 @@ async function initDynamicRouting() { } /** - * Services are components that make up part of Ghost and need initialising on boot + * Services are components that make up part of Ghost and need initializing on boot * These services should all be part of core, frontend services should be loaded with the frontend * We are working towards this being a service loader, with the ability to make certain services optional * @@ -206,7 +206,7 @@ async function initServices({config}) { ]); debug('End: Services'); - // Initialise analytics events + // Initialize analytics events if (config.get('segment:key')) { require('./server/analytics-events').init(); } @@ -295,7 +295,7 @@ async function bootGhost() { require('@tryghost/version'); debug('End: Load version info'); - // Sentry must be initialised early, but requires config + // Sentry must be initialized early, but requires config debug('Begin: Load sentry'); require('./shared/sentry'); debug('End: Load sentry');