Skip to content

Commit

Permalink
Default split serializeable is ":" now
Browse files Browse the repository at this point in the history
  • Loading branch information
grandsilence committed May 11, 2018
1 parent 3a20b20 commit d3b46d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/Serialization/SplitSerializeable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ namespace Leaf.Core.Runtime.Serialization
public abstract class SplitSerializeable : IStringSerializeable
{
/// <summary>
/// Разделитель между значениями. По умолчанию равен " = ".
/// Разделитель между значениями. По умолчанию равен ":".
/// </summary>
protected virtual string Splitter { get; } = " = ";
protected virtual string Splitter { get; } = ":";

/// <inheritdoc />
public abstract string SerializeToString();
Expand Down

0 comments on commit d3b46d9

Please sign in to comment.