From a3163abb1e1b4803ba3d297f2b11a99217d48c5a Mon Sep 17 00:00:00 2001 From: Andrey Moshkov Date: Sun, 21 Dec 2025 14:07:37 +0300 Subject: [PATCH] fix typo error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit в задании идет речь про `ISuperMan` а тут разные написания у `superMan` и `ISuperman` надо бы сделать одинаково --- modules/35-interfaces/20-interface-using/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/35-interfaces/20-interface-using/index.ts b/modules/35-interfaces/20-interface-using/index.ts index 3ebc680..b836d7d 100644 --- a/modules/35-interfaces/20-interface-using/index.ts +++ b/modules/35-interfaces/20-interface-using/index.ts @@ -11,11 +11,11 @@ interface IPlane extends IFlying { } // BEGIN -interface ISuperman extends IBird, IPlane { +interface ISuperMan extends IBird, IPlane { guessWho: (guess: string) => string; } -const superMan: ISuperman = { +const superMan: ISuperMan = { canFly: true, isLiving: true, canCarryPeople: true, @@ -26,4 +26,4 @@ const superMan: ISuperman = { }; // END -export { superMan, type ISuperman, type IBird, type IPlane }; +export { superMan, type ISuperMan, type IBird, type IPlane };