Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed Spelling of Organisation to Organization #1280

Merged
merged 2 commits into from
Oct 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cypress/schemas/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const seller100 = {
properties: {
'@type': {
type: 'string',
description: 'Organisation or Person',
description: 'Organization or Person',
},
name: {
type: 'string',
Expand Down
2 changes: 1 addition & 1 deletion cypress/schemas/local-business-schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const localBusiness140 = {
},
name: {
type: 'string',
description: 'The name of the person or organisation.',
description: 'The name of the person or organization.',
garmeeh marked this conversation as resolved.
Show resolved Hide resolved
},
description: {
type: 'string',
Expand Down
4 changes: 2 additions & 2 deletions cypress/schemas/social-profile-schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ const socialProfile100 = {
},
'@type': {
type: 'string',
description: 'Person or Organisation',
description: 'Person or Organization',
},
name: {
type: 'string',
description: 'The name of the person or organisation.',
description: 'The name of the person or organization.',
},
url: {
type: 'string',
Expand Down
2 changes: 1 addition & 1 deletion e2e/pages/jsonld/imageArray.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function ImageArray() {
{
contentUrl: 'http://www.example.com/images/image2.png',
creator: {
'@type': 'Organisation',
'@type': 'Organization',
name: 'John Doe',
},
creditText: 'John Doe',
Expand Down
2 changes: 1 addition & 1 deletion src/jsonld/image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react';
import { JsonLd, JsonLdProps } from './jsonld';

type Creator = {
'@type': 'Person' | 'Organisation';
'@type': 'Person' | 'Organization';
name: string;
};

Expand Down