Skip to content

Commit 1763fa6

Browse files
Fixed small code typo
1 parent eab7ce2 commit 1763fa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/pages/intro-and-motivation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Before you ready your pitchforks, check out some of the similarities between Typ
2424
|**Generics?**|||Same use of generics for classes, interfaces, functions, and variables|
2525
|**Tuples? Anonymous types?**|||Both have flexible ways of representing objects as shapes|
2626

27-
It's not just that they have a large crossover of language features, it is also that they are remarkably similar in their syntax. Just a preview from some of the other sections covered in this guide:
27+
It is not just that they have a large crossover of language features, it is also that they are remarkably similar in their syntax. Just a preview from some of the other sections covered in this guide:
2828

2929
### Inheriting Classes
3030

@@ -35,7 +35,7 @@ It's not just that they have a large crossover of language features, it is also
3535
class MobileDevice {
3636
call(recipient: number) {
3737
console.log(`Calling: ${recipient}`);
38-
}f
38+
}
3939
}
4040

4141
class AndroidPhone extends MobileDevice { }

0 commit comments

Comments
 (0)