We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7b12e0 commit 542142aCopy full SHA for 542142a
Rubberduck.RegexAssistant/Expressions/ConcatenatedExpression.cs
@@ -16,7 +16,7 @@ public ConcatenatedExpression(IList<IRegularExpression> subexpressions)
16
17
public IList<IRegularExpression> Subexpressions { get; }
18
19
- public override string ToString() => $"Concatenated:{Subexpressions.ToString()}";
+ public override string ToString() => $"Concatenated:{Subexpressions}";
20
public override bool Equals(object obj) => obj is ConcatenatedExpression other && Subexpressions.Equals(other.Subexpressions);
21
public override int GetHashCode() => HashCode.Compute(Subexpressions);
22
}
0 commit comments