Skip to content

Commit 174a733

Browse files
authored
chore: Fix typos (#169)
Now that the typos check is finally working, we might as well make it pass. Though `thingie` might be [correct](https://en.wiktionary.org/wiki/thingy#Alternative_forms), it's less common. https://books.google.com/ngrams/graph?content=thingy%2Cthingie&year_start=1800&year_end=2022&corpus=en&smoothing=3
1 parent df1038c commit 174a733

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/stories/ReportAProblem.stories.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export const OverridePageTitle: StoryObj<ReportAProblem> = {
9999
render,
100100
args: {
101101
...RepoAndSourcePath.args,
102-
pageTitle: 'thingie'
102+
pageTitle: 'thingy'
103103
},
104104
play: async ({canvasElement, args}) => {
105105
const reportAProblem = canvasElement.querySelector('jio-report-a-problem') as ReportAProblem;
@@ -111,7 +111,7 @@ export const OverridePageTitle: StoryObj<ReportAProblem> = {
111111

112112
expectToBeUrlEncoded(
113113
reportAProblem.shadowRoot.querySelector('a').getAttribute('href'),
114-
{url: '', title: 'thingie page', githubRepo: args.githubRepo}
114+
{url: '', title: 'thingy page', githubRepo: args.githubRepo}
115115
);
116116
}
117117
};
@@ -120,7 +120,7 @@ export const OverrideURL: StoryObj<ReportAProblem> = {
120120
render,
121121
args: {
122122
...RepoAndSourcePath.args,
123-
pageTitle: 'thingie',
123+
pageTitle: 'thingy',
124124
url: 'https://google.com/'
125125
},
126126
play: async ({canvasElement, args}) => {
@@ -133,7 +133,7 @@ export const OverrideURL: StoryObj<ReportAProblem> = {
133133

134134
expectToBeUrlEncoded(
135135
reportAProblem.shadowRoot.querySelector('a').getAttribute('href'),
136-
{url: 'https://google.com/', title: 'thingie page', githubRepo: args.githubRepo}
136+
{url: 'https://google.com/', title: 'thingy page', githubRepo: args.githubRepo}
137137
);
138138
}
139139
};

src/stories/ReportInfraIssue.stories.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export const OverridePageTitle: StoryObj<ReportInfraIssue> = {
8787
render,
8888
args: {
8989
...RepoAndSourcePath.args,
90-
pageTitle: 'thingie'
90+
pageTitle: 'thingy'
9191
},
9292
play: async ({canvasElement, args}) => {
9393
const reportInfraIssue = canvasElement.querySelector('jio-report-infra-issue') as ReportInfraIssue;
@@ -105,7 +105,7 @@ export const OverrideURL: StoryObj<ReportInfraIssue> = {
105105
render,
106106
args: {
107107
...RepoAndSourcePath.args,
108-
pageTitle: 'thingie',
108+
pageTitle: 'thingy',
109109
url: 'https://google.com/'
110110
},
111111
play: async ({canvasElement, args}) => {

0 commit comments

Comments
 (0)