File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Rubberduck.CodeAnalysis/Inspections/Concrete Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
13
13
/// <why>
14
14
/// Regardless of the presence or absence of an explicit ByRef or ByVal modifier, the value-parameter
15
15
/// of a property mutator is always treated as though it had an explicit ByVal modifier.
16
- /// Exception: UserDefinedType parameters are always passed by reference.
16
+ /// Exception: UserDefinedType and Array parameters are always passed by reference.
17
17
/// </why>
18
18
/// <example hasResult="true">
19
19
/// <module name="MyModule" type="Standard Module">
20
20
/// <![CDATA[
21
21
/// Private fizzField As Long
22
22
/// Public Property Get Fizz() As Long
23
- /// Fizz = fizzFiled
23
+ /// Fizz = fizzField
24
24
/// End Property
25
25
/// Public Property Let Fizz(ByRef arg As Long)
26
- /// fizzFiled = arg
26
+ /// fizzField = arg
27
27
/// End Property
28
28
/// ]]>
29
29
/// </module>
@@ -33,10 +33,10 @@ namespace Rubberduck.CodeAnalysis.Inspections.Concrete
33
33
/// <![CDATA[
34
34
/// Private fizzField As Long
35
35
/// Public Property Get Fizz() As Long
36
- /// Fizz = fizzFiled
36
+ /// Fizz = fizzField
37
37
/// End Property
38
38
/// Public Property Let Fizz(arg As Long)
39
- /// fizzFiled = arg
39
+ /// fizzField = arg
40
40
/// End Property
41
41
/// ]]>
42
42
/// </module>
You can’t perform that action at this time.
0 commit comments