Skip to content

Commit a64fc33

Browse files
authored
Merge pull request #5560 from rubberduck-vba/missingmoduleannotation-example-patch
Update MissingModuleAnnotationInspection.cs
2 parents d2189da + c87f158 commit a64fc33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Rubberduck.CodeAnalysis/Inspections/Concrete/MissingModuleAnnotationInspection.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
1717
/// do not have a Rubberduck annotation corresponding to the hidden VB attribute.
1818
/// </why>
1919
/// <example hasResult="true">
20-
/// <module name="MyModule" type="Class Module">
20+
/// <module name="MyModule" type="Predeclared Class">
2121
/// <![CDATA[
2222
/// Attribute VB_PredeclaredId = True
2323
/// Option Explicit
@@ -26,7 +26,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
2626
/// </module>
2727
/// </example>
2828
/// <example hasResult="false">
29-
/// <module name="MyModule" type="Class Module">
29+
/// <module name="MyModule" type="Predeclared Class">
3030
/// <![CDATA[
3131
/// Attribute VB_PredeclaredId = True
3232
/// '@PredeclaredId
@@ -92,4 +92,4 @@ protected override string ResultDescription(Declaration declaration, (string Att
9292
string.Join(", ", properties.AttributeValues));
9393
}
9494
}
95-
}
95+
}

0 commit comments

Comments
 (0)