From 6f4b50ba56d36b0742d2e7c70296ddaf5ff3b69a Mon Sep 17 00:00:00 2001 From: zjopy <33468089+zjopy@users.noreply.github.com> Date: Sat, 4 Apr 2020 11:37:18 +0200 Subject: [PATCH] Fix typo --- pages/Type Compatibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Type Compatibility.md b/pages/Type Compatibility.md index 737b5e4d0..625af5c1e 100644 --- a/pages/Type Compatibility.md +++ b/pages/Type Compatibility.md @@ -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 {