Skip to content

Commit 4bde4a8

Browse files
committed
added missing single quotes
1 parent c1c1b91 commit 4bde4a8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Rubberduck.Parsing/Annotations/Concrete/DefaultMemberAnnotation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Rubberduck.Parsing.Annotations.Concrete
1313
/// Option Explicit
1414
/// Private InternalState As VBA.Collection
1515
///
16-
/// @DefaultMember
16+
/// '@DefaultMember
1717
/// Public Property Get Item(ByVal Index As Variant) As Variant
1818
/// Item = InternalState(Index)
1919
/// End Sub
@@ -35,7 +35,7 @@ namespace Rubberduck.Parsing.Annotations.Concrete
3535
/// Option Explicit
3636
/// Private InternalState As VBA.Collection
3737
///
38-
/// @DefaultMember
38+
/// '@DefaultMember
3939
/// Public Property Get Item(ByVal Index As Variant) As Variant
4040
/// Attribute Item.VB_UserMemId = 0
4141
/// Item = InternalState(Index)

Rubberduck.Parsing/Annotations/Concrete/DescriptionAnnotation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace Rubberduck.Parsing.Annotations.Concrete
2020
/// <![CDATA[
2121
/// Option Explicit
2222
///
23-
/// @Description("Does something")
23+
/// '@Description("Does something")
2424
/// Public Sub DoSomething()
2525
/// End Sub
2626
/// ]]>
@@ -31,7 +31,7 @@ namespace Rubberduck.Parsing.Annotations.Concrete
3131
/// <![CDATA[
3232
/// Option Explicit
3333
///
34-
/// @Description("Does something")
34+
/// '@Description("Does something")
3535
/// Public Sub DoSomething()
3636
/// Attribute DoSomething.VB_Description = "Does something"
3737
/// End Sub

Rubberduck.Parsing/Annotations/Concrete/EnumeratorMemberAnnotation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Rubberduck.Parsing.Annotations.Concrete
1313
/// Option Explicit
1414
/// Private InternalState As VBA.Collection
1515
///
16-
/// @Enumerator
16+
/// '@Enumerator
1717
/// Public Property Get NewEnum() As IUnknown
1818
/// Set NewEnum = InternalState.[_NewEnum]
1919
/// End Sub
@@ -28,7 +28,7 @@ namespace Rubberduck.Parsing.Annotations.Concrete
2828
/// Option Explicit
2929
/// Private InternalState As VBA.Collection
3030
///
31-
/// @Enumerator
31+
/// '@Enumerator
3232
/// Public Property Get NewEnum() As IUnknown
3333
/// Attribute NewEnum.VB_UserMemId = -4
3434
/// Set NewEnum = InternalState.[_NewEnum]

Rubberduck.Parsing/Annotations/Concrete/ExcelHotKeyAnnotation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace Rubberduck.Parsing.Annotations.Concrete
1919
/// <![CDATA[
2020
/// Option Explicit
2121
///
22-
/// @ExcelHotkey("D")
22+
/// '@ExcelHotkey("D")
2323
/// Public Sub DoSomething()
2424
/// '...
2525
/// End Sub
@@ -31,7 +31,7 @@ namespace Rubberduck.Parsing.Annotations.Concrete
3131
/// <![CDATA[
3232
/// Option Explicit
3333
///
34-
/// @ExcelHotkey("D")
34+
/// '@ExcelHotkey("D")
3535
/// Public Sub DoSomething()
3636
/// Attribute DoSomething.VB_ProcData.VB_Invoke_Func = "D\n14"
3737
/// '...

0 commit comments

Comments
 (0)