Skip to content

Commit 5486415

Browse files
committed
Fix missing XML tags
1 parent 347c603 commit 5486415

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Rubberduck.CodeAnalysis/Inspections/Concrete/ImplicitDefaultMemberAccessInspection.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ namespace Rubberduck.Inspections.Concrete
4545
/// arg.ConnectionString = bar
4646
/// End Sub
4747
/// ]]>
48+
/// </example>
4849
public sealed class ImplicitDefaultMemberAccessInspection : IdentifierReferenceInspectionBase
4950
{
5051
public ImplicitDefaultMemberAccessInspection(RubberduckParserState state)

Rubberduck.CodeAnalysis/Inspections/Concrete/ImplicitUnboundDefaultMemberAccessInspection.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace Rubberduck.Inspections.Concrete
2424
/// bar = arg
2525
/// End Sub
2626
/// ]]>
27+
/// </example>
2728
/// <example hasresult="true">
2829
/// <![CDATA[
2930
/// Public Sub DoSomething(ByVal arg As Object)
@@ -39,6 +40,7 @@ namespace Rubberduck.Inspections.Concrete
3940
/// bar = arg.SomeValueReturningMember
4041
/// End Sub
4142
/// ]]>
43+
/// </example>
4244
/// <example hasresult="false">
4345
/// <![CDATA[
4446
/// Public Sub DoSomething(ByVal arg As Object)

0 commit comments

Comments
 (0)