Skip to content

Commit

Permalink
Merge pull request #5560 from rubberduck-vba/missingmoduleannotation-…
Browse files Browse the repository at this point in the history
…example-patch

Update MissingModuleAnnotationInspection.cs
  • Loading branch information
retailcoder committed Aug 16, 2020
2 parents d2189da + c87f158 commit a64fc33
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
/// do not have a Rubberduck annotation corresponding to the hidden VB attribute.
/// </why>
/// <example hasResult="true">
/// <module name="MyModule" type="Class Module">
/// <module name="MyModule" type="Predeclared Class">
/// <![CDATA[
/// Attribute VB_PredeclaredId = True
/// Option Explicit
Expand All @@ -26,7 +26,7 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
/// </module>
/// </example>
/// <example hasResult="false">
/// <module name="MyModule" type="Class Module">
/// <module name="MyModule" type="Predeclared Class">
/// <![CDATA[
/// Attribute VB_PredeclaredId = True
/// '@PredeclaredId
Expand Down Expand Up @@ -92,4 +92,4 @@ protected override string ResultDescription(Declaration declaration, (string Att
string.Join(", ", properties.AttributeValues));
}
}
}
}

0 comments on commit a64fc33

Please sign in to comment.