From c3faf01472f0ec1e6f8599b35817f1edf33abc9f Mon Sep 17 00:00:00 2001 From: Stanislav Mykhailenko Date: Mon, 10 Apr 2023 17:48:32 +0300 Subject: [PATCH] Update Lesson 4 Task 4 --- Lesson_4/Task_4/Interfaces/IFlyable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lesson_4/Task_4/Interfaces/IFlyable.cs b/Lesson_4/Task_4/Interfaces/IFlyable.cs index c76dd45..74123e7 100644 --- a/Lesson_4/Task_4/Interfaces/IFlyable.cs +++ b/Lesson_4/Task_4/Interfaces/IFlyable.cs @@ -8,6 +8,6 @@ namespace LiskovSubstitution.Interfaces { public interface IFlyable { - public void Fly(); + void Fly(); } }