From 23c29d0674fdd64deaad7f9079a8c9be3f7a82e4 Mon Sep 17 00:00:00 2001 From: Naz Date: Thu, 10 Nov 2022 17:29:41 +0700 Subject: [PATCH] Fixed typo --- ghost/core/core/server/data/schema/fixtures/fixture-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/core/core/server/data/schema/fixtures/fixture-manager.js b/ghost/core/core/server/data/schema/fixtures/fixture-manager.js index 02f86c1d3e..7dd20fa87f 100644 --- a/ghost/core/core/server/data/schema/fixtures/fixture-manager.js +++ b/ghost/core/core/server/data/schema/fixtures/fixture-manager.js @@ -215,7 +215,7 @@ class FixtureManager { // would change the fixturesHash. modelFixture = _.cloneDeep(modelFixture); // The Post model fixtures need a `published_at` date, where at least the seconds - // are different, otherwise `prev_post` and `next_post` helpers won't workd with + // are different, otherwise `prev_post` and `next_post` helpers won't work with // them. if (modelFixture.name === 'Post') { _.forEach(modelFixture.entries, (post, index) => {