We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32d3ee0 commit d6eae90Copy full SHA for d6eae90
1 file changed
tests/FSharp.Control.AsyncSeq.Tests/AsyncSeqTests.fs
@@ -72,7 +72,7 @@ let rec IsCancellationExn (e:exn) =
72
let AreCancellationExns (e1:exn) (e2:exn) =
73
IsCancellationExn e1 && IsCancellationExn e2
74
75
-/// Determines equalit of two async sequences by convering them to lists, ignoring side-effects.
+/// Determines equality of two async sequences by convering them to lists, ignoring side-effects.
76
let EQ (a:AsyncSeq<'a>) (b:AsyncSeq<'a>) =
77
let exp = a |> AsyncSeq.toListSynchronously
78
let act = b |> AsyncSeq.toListSynchronously
0 commit comments