From e60dff5d3ae6bfac5366245350e04bf3395b4a22 Mon Sep 17 00:00:00 2001 From: Eunice Kloe <40307616+Nicekloe@users.noreply.github.com> Date: Mon, 8 May 2023 15:55:09 -0400 Subject: [PATCH] Update improvements.md --- docs/errata/improvements.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/errata/improvements.md b/docs/errata/improvements.md index a44a500..7a596ab 100644 --- a/docs/errata/improvements.md +++ b/docs/errata/improvements.md @@ -272,7 +272,7 @@ class Episilon : Delta { } // A class with at least one abstract member must be decorated with the abstract keyword to prevent instantiation. abstract class Zeta { void M3() { } abstract void M4(); } -// A class inheriting the M3 method but must provide an implementarion for M4. +// A class inheriting the M3 method but must provide an implementation for M4. class Eta : Zeta { void M4() { } } // In C# 8 and later, interfaces can have default implementatations as well as members that must be implemented.