Skip to content

Commit

Permalink
Merge pull request #47 from datalust/tilde-union
Browse files Browse the repository at this point in the history
Use `~` in ToString for unioned signals
  • Loading branch information
nblumhardt authored Jan 16, 2018
2 parents 43b4fea + 75fabba commit 7b64554
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Seq.Api/Model/Signals/SignalExpressionPart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public override string ToString()
return $"{Group(Left)},{Group(Right)}";

if (Kind == SignalExpressionKind.Union)
return $"{Group(Left)}+{Group(Right)}";
return $"{Group(Left)}~{Group(Right)}";

throw new InvalidOperationException("Invalid signal expression kind.");
}
Expand Down

0 comments on commit 7b64554

Please sign in to comment.