Skip to content

Commit 1bcc6df

Browse files
authored
Update EnumeratorMemberAnnotation.cs
Fix the nesting of before/after example tags
1 parent 77fcfe2 commit 1bcc6df

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Rubberduck.Parsing/Annotations/Concrete/EnumeratorMemberAnnotation.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ namespace Rubberduck.Parsing.Annotations.Concrete
77
/// @Enumerator annotation, indicates that the member should have a VB_UserMemId attribute value (-4) making it the enumerator-provider member of that class, enabling 'For Each' iteration of custom collections. Use the quick-fixes to "Rubberduck Opportunities" code inspections to synchronize annotations and attributes.
88
/// </summary>
99
/// <example>
10-
/// <module name="Class1" type="Class Module">
1110
/// <before>
11+
/// <module name="Class1" type="Class Module">
1212
/// <![CDATA[
1313
/// Option Explicit
1414
/// Private InternalState As VBA.Collection
@@ -22,8 +22,10 @@ namespace Rubberduck.Parsing.Annotations.Concrete
2222
/// Set InternalState = New VBA.Collection
2323
/// End Sub
2424
/// ]]>
25+
/// </module>
2526
/// </before>
2627
/// <after>
28+
/// <module name="Class1" type="Class Module">
2729
/// <![CDATA[
2830
/// Option Explicit
2931
/// Private InternalState As VBA.Collection
@@ -38,8 +40,8 @@ namespace Rubberduck.Parsing.Annotations.Concrete
3840
/// Set InternalState = New VBA.Collection
3941
/// End Sub
4042
/// ]]>
41-
/// </after>
4243
/// </module>
44+
/// </after>
4345
/// </example>
4446
public sealed class EnumeratorMemberAnnotation : FixedAttributeValueAnnotationBase
4547
{

0 commit comments

Comments
 (0)