0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed typos ()

This commit is contained in:
Tim Gates 2023-03-06 23:11:45 +11:00 committed by GitHub
parent 33316a6440
commit 5394fa81fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 8 deletions
ghost
core
core
frontend/services/routing
server
data/migrations/versions/4.9
services/link-tracking
test/e2e-api/members
portal/src/components

View file

@ -52,7 +52,7 @@ class StaticPagesRouter extends ParentRouter {
}
/**
* @description Prepare context for futher middleware/controllers.
* @description Prepare context for further middleware/controllers.
* @param {Object} req
* @param {Object} res
* @param {Function} next

View file

@ -4,7 +4,7 @@ const htmlToPlaintext = require('@tryghost/html-to-plaintext');
const mobiledocLib = require('../../../../lib/mobiledoc');
const {createTransactionalMigration} = require('../../utils');
// in Ghost versions 4.6.1-4.8.4 the 4.0 migration that transfored URLs had a bug
// in Ghost versions 4.6.1-4.8.4 the 4.0 migration that transformed URLs had a bug
// that meant urls inside cards in mobiledoc content was not being transformed
//
// if the migrations table indicates an upgrade was made from 3.x to 4.6-4.8 then

View file

@ -56,7 +56,7 @@ module.exports = class LinkClickRepository {
}
const model = await this.#MemberLinkClickEventModel.add({
// Only store the parthname (no support for variable query strings)
// Only store the pathname (no support for variable query strings)
redirect_id: linkClick.link_id.toHexString(),
member_id: member.id
}, {});

View file

@ -294,7 +294,7 @@ describe('Members API', function () {
status: 'canceled'
});
// Send the webhook call to anounce the cancelation
// Send the webhook call to announce the cancelation
const webhookPayload = JSON.stringify({
type: 'customer.subscription.updated',
data: {
@ -504,7 +504,7 @@ describe('Members API', function () {
status: 'canceled'
});
// Send the webhook call to anounce the cancelation
// Send the webhook call to announce the cancelation
const webhookPayload = JSON.stringify({
type: 'customer.subscription.updated',
data: {
@ -1047,7 +1047,7 @@ describe('Members API', function () {
status: 'canceled'
});
// Send the webhook call to anounce the cancelation
// Send the webhook call to announce the cancelation
webhookPayload = JSON.stringify({
type: 'customer.subscription.updated',
data: {
@ -1443,7 +1443,7 @@ describe('Members API', function () {
discount
});
// Send the webhook call to anounce the cancelation
// Send the webhook call to announce the cancelation
webhookPayload = JSON.stringify({
type: 'customer.subscription.updated',
data: {

View file

@ -1,6 +1,6 @@
/** By default, CRAs webpack bundle combines and appends the main css at root level, so they are not applied inside iframe
* This uses a hack where we append `<style> </style>` tag with all CSS inside the head of iframe dynamically, thus making it available easily
* We can create separate variables to keep styles grouped logically, and export them as one appeneded string
* We can create separate variables to keep styles grouped logically, and export them as one appended string
*/
import {GlobalStyles} from './Global.styles';