Skip to content

Commit 7717bd5

Browse files
committed
Fix old links to new locations
1 parent 282b3b6 commit 7717bd5

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ Command modifiers, like `release` and `debug`, can be specified with `-` or `/`
406406
build help
407407
```
408408

409-
For more info, see this PR: <https://github.com/abelbraaksma/TaskSeq/pull/29>.
409+
For more info, see this PR: <https://github.com/fsprojects/FSharp.Control.TaskSeq/pull/29>.
410410

411411
## Work in progress
412412

@@ -505,12 +505,12 @@ module TaskSeq =
505505
val zip: source1: taskSeq<'T> -> source2: taskSeq<'U> -> taskSeq<'T * 'U>
506506
```
507507

508-
[buildstatus]: https://github.com/abelbraaksma/TaskSeq/actions/workflows/main.yaml
509-
[buildstatus_img]: https://github.com/abelbraaksma/TaskSeq/actions/workflows/main.yaml/badge.svg
510-
[teststatus]: https://github.com/abelbraaksma/TaskSeq/actions/workflows/test.yaml
511-
[teststatus_img]: https://github.com/abelbraaksma/TaskSeq/actions/workflows/test.yaml/badge.svg
508+
[buildstatus]: https://github.com/fsprojects/FSharp.Control.TaskSeq/actions/workflows/main.yaml
509+
[buildstatus_img]: https://github.com/fsprojects/FSharp.Control.TaskSeq/actions/workflows/main.yaml/badge.svg
510+
[teststatus]: https://github.com/fsprojects/FSharp.Control.TaskSeq/actions/workflows/test.yaml
511+
[teststatus_img]: https://github.com/fsprojects/FSharp.Control.TaskSeq/actions/workflows/test.yaml/badge.svg
512512

513-
[1]: https://github.com/abelbraaksma/TaskSeq/issues/25
513+
[1]: https://github.com/fsprojects/FSharp.Control.TaskSeq/pull/25
514514
[2]: https://github.com/xunit/xunit/issues/2587
515515
[3]: https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.iasyncenumerable-1?view=net-7.0
516516
[4]: https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.iasyncenumerator-1.movenextasync?view=net-7.0

src/FSharp.Control.TaskSeq.Test/TaskSeq.StateTransitionBug.Tests.CE.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ let ``CE empty taskSeq, GetAsyncEnumerator multiple times and then MoveNextAsyn
5151
// FIXED!
5252
// Previously: shaky test. Appears that this occasionally raises a NullReferenceException,
5353
// esp when there's stress (i.e. run all at the same time).
54-
// See https://github.com/abelbraaksma/TaskSeq/pull/54
54+
// See https://github.com/fsprojects/FSharp.Control.TaskSeq/pull/54
5555
[<Theory; ClassData(typeof<TestEmptyVariants>)>]
5656
let ``CE empty taskSeq, GetAsyncEnumerator + MoveNextAsync multiple times`` variant = task {
5757
let tskSeq = Gen.getEmptyVariant variant
@@ -68,7 +68,7 @@ let ``CE empty taskSeq, GetAsyncEnumerator + MoveNextAsync multiple times`` vari
6868
// This is the simpler version of the above test.
6969
[<Fact>]
7070
let ``BUG #54 CE with empty taskSeq and Delay, crash after GetAsyncEnumerator + MoveNextAsync 2x`` () = task {
71-
// See: https://github.com/abelbraaksma/TaskSeq/pull/54
71+
// See: https://github.com/fsprojects/FSharp.Control.TaskSeq/pull/54
7272
let tskSeq = taskSeq { do! Task.Delay(50) |> Task.ofTask }
7373

7474
use enumerator1 = tskSeq.GetAsyncEnumerator()

src/FSharp.Control.TaskSeq/TaskSeqBuilder.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ and [<NoComparison; NoEquality>] TaskSeq<'Machine, 'T
159159

160160
// This ensures that, esp. in cases where there's no actual iteration (i.e. empty seq)
161161
// we can still detect completeness and prevent an incorrect jump in the resumable code.
162-
// See https://github.com/abelbraaksma/TaskSeq/pull/54
162+
// See https://github.com/fsprojects/FSharp.Control.TaskSeq/pull/54
163163
if not canMoveNext then
164164
// Signal we reached the end.
165165
// DO NOT call Data.builder.Complete() here, ONLY do that in the Run method.
@@ -329,7 +329,7 @@ type TaskSeqBuilder() =
329329
// Signal we're at the end
330330
// NOTE: if we don't do it here, as well as in IValueTaskSource<bool>.GetResult
331331
// we either end up in an endless loop, or we'll get NRE on empty sequences.
332-
// see: https://github.com/abelbraaksma/TaskSeq/pull/54
332+
// see: https://github.com/fsprojects/FSharp.Control.TaskSeq/pull/54
333333
sm.Data.promiseOfValueOrEnd.SetResult(false)
334334
sm.Data.builder.Complete()
335335
sm.Data.completed <- true

0 commit comments

Comments
 (0)