Skip to content

Commit

Permalink
fix ReadLineAsync
Browse files Browse the repository at this point in the history
fixes #105
  • Loading branch information
SimonCropp committed Nov 13, 2023
1 parent f420032 commit fcce29a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version>1.32.0</Version>
<Version>1.32.1</Version>
<AssemblyVersion>1.0.0</AssemblyVersion>
<PackageTags>Polyfill</PackageTags>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
Expand Down
2 changes: 1 addition & 1 deletion src/Polyfill/PolyfillExtensions_TextReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static Task<string> ReadLineAsync(
{
cancellationToken.ThrowIfCancellationRequested();

return target.ReadToEndAsync();
return target.ReadLineAsync();
}
#endif
}

0 comments on commit fcce29a

Please sign in to comment.