From e411472703c044f30423bc87691f237b9d4b87a3 Mon Sep 17 00:00:00 2001 From: swiftty <62803132+swiftty@users.noreply.github.com> Date: Fri, 18 Nov 2022 19:08:04 +0900 Subject: [PATCH] Fix Source links in documentations --- .../AsyncAlgorithms.docc/Guides/CombineLatest.md | 2 +- Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Debounce.md | 2 +- Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Merge.md | 2 +- Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Zip.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/CombineLatest.md b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/CombineLatest.md index e0fd7f47..b481eaae 100644 --- a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/CombineLatest.md +++ b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/CombineLatest.md @@ -1,6 +1,6 @@ # Combine Latest -[[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncCombineLatest2Sequence.swift), [Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncCombineLatest3Sequence.swift) | +[[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/CombineLatest/AsyncCombineLatest2Sequence.swift), [Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/CombineLatest/AsyncCombineLatest3Sequence.swift) | [Tests](https://github.com/apple/swift-async-algorithms/blob/main/Tests/AsyncAlgorithmsTests/TestCombineLatest.swift)] Combines the latest values produced from two or more asynchronous sequences into an asynchronous sequence of tuples. diff --git a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Debounce.md b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Debounce.md index b193c313..e1a30faa 100644 --- a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Debounce.md +++ b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Debounce.md @@ -3,7 +3,7 @@ * Author(s): [Philippe Hausler](https://github.com/phausler) [ -[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncDebounceSequence.swift) | +[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/Debounce/AsyncDebounceSequence.swift) | [Tests](https://github.com/apple/swift-async-algorithms/blob/main/Tests/AsyncAlgorithmsTests/TestDebounce.swift) ] diff --git a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Merge.md b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Merge.md index bed7c4bb..edc1842b 100644 --- a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Merge.md +++ b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Merge.md @@ -1,6 +1,6 @@ # Merge -[[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/Asyncmerge2Sequence.swift), [Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncMerge3Sequence.swift) | +[[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/Merge/AsyncMerge2Sequence.swift), [Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/Merge/AsyncMerge3Sequence.swift) | [Tests](https://github.com/apple/swift-async-algorithms/blob/main/Tests/AsyncAlgorithmsTests/TestMerge.swift)] Merges two or more asynchronous sequences sharing the same element type into one singular asynchronous sequence. diff --git a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Zip.md b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Zip.md index 2aa4f32e..e73e1fde 100644 --- a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Zip.md +++ b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Zip.md @@ -1,6 +1,6 @@ # Zip -[[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncZip2Sequence.swift), [Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncZip3Sequence.swift) | +[[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/Zip/AsyncZip2Sequence.swift), [Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/Zip/AsyncZip3Sequence.swift) | [Tests](https://github.com/apple/swift-async-algorithms/blob/main/Tests/AsyncAlgorithmsTests/TestZip.swift)] Combines the latest values produced from two or more asynchronous sequences into an asynchronous sequence of tuples.