Skip to content

Commit b83f42e

Browse files
committed
Typos
1 parent f0e27ce commit b83f42e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/FSharp.Control.TaskSeq.Test/Nunit.Extensions.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ module ExtraCustomMatchers =
104104
/// Asserts any exception that matches, or is derived from the given exception <see cref="Type" />.
105105
/// Async exceptions are almost always nested in an <see cref="AggregateException" />, however, in an
106106
/// async try/catch in F#, the exception is typically unwrapped. But this is not foolproof, and
107-
/// in cases where we just call <see cref="Task.Wait" />, and <see cref="AggregateException" /> will be raised regardless.
107+
/// in cases where we just call <see cref="Task.Wait" />, an <see cref="AggregateException" /> will be raised regardless.
108108
/// This assertion will go over all nested exceptions and 'self', to find a matching exception.
109109
/// Function to evaluate MUST return a <see cref="System.Threading.Tasks.Task" />, not a generic
110110
/// <see cref="Task&lt;'T>" />.

src/FSharp.Control.TaskSeq/FSharp.Control.TaskSeq.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<Authors>Abel Braaksma; Don Syme</Authors>
1010
<Description>This library brings C#'s concept of 'await foreach' to F#, with a seamless implementation of IAsyncEnumerable&lt;'T&gt;.
1111

12-
The 'taskSeq' computation expression adds support for awaitable asyncronous sequences with a similar ease of use and performance as F#'s 'task' CE, with minimal overhead through ValueTask under the hood. TaskSeq brings 'seq' and 'task' together in a safe way.
12+
The 'taskSeq' computation expression adds support for awaitable asynchronous sequences with similar ease of use and performance to F#'s 'task' CE, with minimal overhead through ValueTask under the hood. TaskSeq brings 'seq' and 'task' together in a safe way.
1313

14-
Generates optimized IL code through the new resumable state machines, and comes with a comprehensive set of helpful functions in module 'TaskSeq'. See README for documentation and more info.</Description>
14+
Generates optimized IL code through resumable state machines, and comes with a comprehensive set of helper functions in module 'TaskSeq'. See README for documentation and more info.</Description>
1515
<Copyright>Copyright 2022</Copyright>
1616
<PackageProjectUrl>https://github.com/fsprojects/FSharp.Control.TaskSeq</PackageProjectUrl>
1717
<RepositoryUrl>https://github.com/fsprojects/FSharp.Control.TaskSeq</RepositoryUrl>

0 commit comments

Comments
 (0)