Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Sep 20, 2023
1 parent ace4301 commit 0f90802
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<PropertyGroup>
<NoWarn>CS1591;CS0649</NoWarn>
<Version>4.5.0</Version>
<Version>4.5.1</Version>
<LangVersion>preview</LangVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<Description>A collection of minimal binary files.</Description>
Expand Down
4 changes: 2 additions & 2 deletions src/EmptyFiles/FileExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static CharSpan GetExtension(CharSpan extensionOrPath)
{
if (i != length - 1)
{
return extensionOrPath.Slice(i +1, length - i-1);
return extensionOrPath.Slice(i + 1, length - i - 1);
}

break;
Expand Down Expand Up @@ -451,4 +451,4 @@ public static void AddTextExtensions(IEnumerable<string> extensions)
};

public static IEnumerable<string> TextExtensions => textExtensions;
}
}

0 comments on commit 0f90802

Please sign in to comment.