Skip to content

Commit 0b4af57

Browse files
committed
2 parents 3395760 + 06bf58d commit 0b4af57

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

packages/playground-examples/copy/en/JavaScript/JavaScript Essentials/Objects and Arrays.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ console.log(purchaseOrder.item.type)
3939

4040
// TypeScript provides feedback to the playground
4141
// about what JavaScript objects are available in this
42-
// file and lets you avoid typoes and see additional
42+
// file and lets you avoid typos and see additional
4343
// information without having to look it up in another place.
4444

4545
// TypeScript also offers these same features to arrays.

packages/playground-examples/copy/vo/JavaScript/JavaScript Essentials/Objects and Arrays.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ console.log(purchaseOrder.item.type)
3838

3939
// TypeScript provides feedback to the playground
4040
// about what JavaScript objects are available in this
41-
// file and lets you avoid typoes and see additional
41+
// file and lets you avoid typos and see additional
4242
// information without having to look it up in another place.
4343

4444
// TypeScript also offers these same features to arrays.

packages/typescriptlang-org/src/components/index/EditorExamples.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const EditorExamples = () => {
2121
"Validate your function arguments",
2222
"Document your React Props via types",
2323
"Get completions for un-typed JavaScript code",
24-
"Catch typoes in your editor ahead of runtime",
24+
"Catch typos in your editor ahead of runtime",
2525
"Offer instant fixes for common bugs",
2626
"Opt-in to strict nullability checking",
2727
"Use exact strings and numbers for type-checking",
@@ -55,7 +55,7 @@ export const EditorExamples = () => {
5555
<TypeDefinitions />
5656
),
5757
3: (
58-
<Typoes />
58+
<Typos />
5959
),
6060
4: (
6161
<DidYouMean />
@@ -203,7 +203,7 @@ app.get('/', function (req, res) {
203203
)
204204
}
205205

206-
const Typoes = () => {
206+
const Typos = () => {
207207
const js = `
208208
const users = [
209209
{ name: "Ahmed" },

0 commit comments

Comments
 (0)