File tree Expand file tree Collapse file tree 1 file changed +3
-21
lines changed
Rubberduck.CodeAnalysis/Inspections/Concrete Expand file tree Collapse file tree 1 file changed +3
-21
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,7 @@ namespace Rubberduck.Inspections.Concrete
16
16
/// </why>
17
17
/// <example hasResult="true">
18
18
/// <![CDATA[
19
- /// Class1:
20
- ///
21
- /// Public Function Foo() As Long
22
- /// Attibute Foo.VB_UserMemId = 0
23
- /// Foo = 42
24
- /// End Function
25
- ///
26
- /// Module:
27
- ///
28
- /// Public Sub DoSomething(ByVal arg As Class1)
19
+ /// Public Sub DoSomething(ByVal arg As ADODB.Field)
29
20
/// Dim bar As Variant
30
21
/// bar = arg
31
22
/// End Sub
@@ -49,18 +40,9 @@ namespace Rubberduck.Inspections.Concrete
49
40
/// </example>
50
41
/// <example hasResult="false">
51
42
/// <![CDATA[
52
- /// Class1:
53
- ///
54
- /// Public Function Foo() As Long
55
- /// Attibute Foo.VB_UserMemId = 0
56
- /// Foo = 42
57
- /// End Function
58
- ///
59
- /// Module:
60
- ///
61
- /// Public Sub DoSomething(ByVal arg As Class1)
43
+ /// Public Sub DoSomething(ByVal arg As ADODB.Field)
62
44
/// Dim bar As Variant
63
- /// bar = arg.Foo()
45
+ /// bar = arg.Value
64
46
/// End Sub
65
47
/// ]]>
66
48
/// </example>
You can’t perform that action at this time.
0 commit comments