Skip to content

Commit

Permalink
Added Tab to StringSplits.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsagara committed Feb 6, 2024
1 parent f114db5 commit 45203ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<LangVersion>12.0</LangVersion>

<!-- NuGet -->
<Version>2.0.10</Version>
<Version>2.0.11</Version>
<AssemblyVersion>2.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>
<Authors>Jon Sagara</Authors>
Expand Down
3 changes: 2 additions & 1 deletion src/Sagara.Core/StringSplits.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ public static readonly char[]
ForwardSlash = { '/' },
Newline = { '\n' },
NewlineCarriageReturn = { '\n', '\r' },
Semicolon = { ';' };
Semicolon = { ';' },
Tab = { '\t' };
}

0 comments on commit 45203ef

Please sign in to comment.