From 61d7438fa0a6e53639605bdaae568468e4a13973 Mon Sep 17 00:00:00 2001 From: gnu4cn Date: Wed, 3 Apr 2019 17:54:30 +0800 Subject: [PATCH] test --- 09_type_compatibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/09_type_compatibility.md b/09_type_compatibility.md index c2c58d8..233493c 100644 --- a/09_type_compatibility.md +++ b/09_type_compatibility.md @@ -61,7 +61,7 @@ let y = { name: "Alice", location: "Seattle" }; // TSError: тип Unable to compile TypeScript // src/main.ts (12,1): Type '{ name: string; location: string; }' is not assignable to type 'Named'. -// Property 'age' is missing in type '{ name: string; location: string; }'. (2322) +// Property 'age' is missing in type '{ name: string; location: string; }'. (2322) x = y; ```