Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Fix typo #1310

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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 pages/Type Compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ TypeScript's type system allows certain operations that can't be known at compil

# Starting out

The basic rule for TypeScript's structural type system is that `x` is compatible with `y` if `y` has at least the same members as `x`. For example:
The basic rule for TypeScript's structural type system is that `y` is compatible with `x` if `y` has at least the same members as `x`. For example:

```ts
interface Named {
Expand Down