From 4b56e6738138036aaae639c2469ea7af2b8b371d Mon Sep 17 00:00:00 2001 From: iceland3 <117017940+iceland3@users.noreply.github.com> Date: Tue, 18 Aug 2026 13:49:53 +0800 Subject: [PATCH] Fix accessibility description for derived interfaces Corrected the explanation regarding interface accessibility in derived interfaces. --- docs/csharp/misc/cs0061.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/misc/cs0061.md b/docs/csharp/misc/cs0061.md index eb91fa3a49c04..80560be48520c 100644 --- a/docs/csharp/misc/cs0061.md +++ b/docs/csharp/misc/cs0061.md @@ -14,7 +14,7 @@ Inconsistent accessibility: base interface 'interface 1' is less accessible than A [public](../language-reference/keywords/public.md) construct must return a publicly accessible object. - Interface accessibility cannot be narrowed in a derived interface. For more information, see [Interfaces](../fundamentals/types/interfaces.md) and [Access Modifiers](../programming-guide/classes-and-structs/access-modifiers.md). + Interface accessibility cannot be widened in a derived interface. For more information, see [Interfaces](../fundamentals/types/interfaces.md) and [Access Modifiers](../programming-guide/classes-and-structs/access-modifiers.md). The following sample generates CS0061.