You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Rubberduck.CodeAnalysis/Inspections/Concrete/ImplementedInterfaceMemberInspection.cs
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -11,22 +11,28 @@
11
11
namespaceRubberduck.Inspections.Concrete
12
12
{
13
13
/// <summary>
14
-
/// Identifies implemented members of class modules that are used as interfaces.
14
+
/// Identifies members of class modules that are used as interfaces, but that have a concrete implementation.
15
15
/// </summary>
16
16
/// <why>
17
-
/// Interfaces provide a unified programmatic access to different objects, and therefore are rarely instantiated as concrete objects.
17
+
/// Interfaces provide an abstract, unified programmatic access to different objects; concrete implementations of their members should be in a separate module that 'Implements' the interface.
0 commit comments