Skip to content

Commit

Permalink
Changed Spelling of Organisation to Organization (#1280)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaipaljadeja authored Oct 28, 2023
1 parent ae7923d commit b9105f0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
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: 'Name of the person or organization.',
},
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

0 comments on commit b9105f0

Please sign in to comment.