Skip to content

Commit bd5e85d

Browse files
jnyrupmapfel
authored andcommitted
Make 1547 example compilable (dennisdoomen#201)
1 parent 322f835 commit bd5e85d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_rules/1547.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ In order to understand what this expression is about, you need to analyze its ex
2222
private bool NonConstructorMemberUsesNewKeyword(Member member)
2323
{
2424
return
25-
(member.HidesBaseClassMember &&
26-
(member.NodeType != NodeType.InstanceInitializer)
25+
member.HidesBaseClassMember &&
26+
(member.NodeType != NodeType.InstanceInitializer);
2727
}
2828

2929
You still need to understand the expression if you are modifying it, but the calling code is now much easier to grasp.

0 commit comments

Comments
 (0)