Skip to content

Commit a0f01be

Browse files
committed
Change MapTransform.ToString implementation
1 parent de82753 commit a0f01be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Orm/Xtensive.Orm/Tuples/Transform/MapTransform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public Tuple Apply(TupleTransformType transformType, Tuple source)
6767
/// <inheritdoc/>
6868
public override string ToString()
6969
{
70-
string description = $"1: {map.ToCommaDelimitedString()}, {(IsReadOnly ? Strings.ReadOnlyShort : Strings.ReadWriteShort)}";
70+
string description = $"[{map.ToCommaDelimitedString()}], {(IsReadOnly ? Strings.ReadOnlyShort : Strings.ReadWriteShort)}";
7171
return string.Format(Strings.TupleTransformFormat,
7272
GetType().GetShortName(),
7373
description);

0 commit comments

Comments
 (0)