mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 21:40:39 +03:00
Swapped to American English spellings
refs 16728a3ef1
- initialised -> initialized
This commit is contained in:
parent
a9ea792d65
commit
035ad01f24
@ -4,7 +4,7 @@
|
||||
* The bridge is responsible for handing communication from the server to the frontend.
|
||||
* Data should only be flowing server -> frontend.
|
||||
* As the architecture improves, the number of cross requires here should go down
|
||||
* Eventually, the aim is to make this a component that is initialised on boot and is either handed to or actively creates the frontend, if the frontend is desired.
|
||||
* Eventually, the aim is to make this a component that is initialized on boot and is either handed to or actively creates the frontend, if the frontend is desired.
|
||||
*
|
||||
* This file is a great place for all the cross-component event handling in lieu of refactoring
|
||||
*/
|
||||
|
@ -39,7 +39,7 @@ class DatabaseStateManager {
|
||||
await this.knexMigrator.isDatabaseOK();
|
||||
return state;
|
||||
} catch (error) {
|
||||
// CASE: database has not yet been initialised
|
||||
// CASE: database has not yet been initialized
|
||||
if (error.code === 'DB_NOT_INITIALISED') {
|
||||
state = states.NEEDS_INITIALISATION;
|
||||
return state;
|
||||
|
Loading…
Reference in New Issue
Block a user