From 6c0b789a66e88a7fd10139d5d9544b169eda6a96 Mon Sep 17 00:00:00 2001 From: Changmin Lee Date: Fri, 3 Oct 2025 08:53:27 +0900 Subject: [PATCH] Fix broken documentation links in Interspersed guide --- .../AsyncAlgorithms.docc/Guides/Intersperse.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Intersperse.md b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Intersperse.md index fbe775d1..537ab27e 100644 --- a/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Intersperse.md +++ b/Sources/AsyncAlgorithms/AsyncAlgorithms.docc/Guides/Intersperse.md @@ -2,8 +2,8 @@ Places a given value in between each element of the asynchronous sequence. -[[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/AsyncInterspersedSequence.swift) | - [Tests](https://github.com/apple/swift-async-algorithms/blob/main/Tests/AsyncAlgorithmsTests/TestInterspersed.swift)] +[[Source](https://github.com/apple/swift-async-algorithms/blob/main/Sources/AsyncAlgorithms/Interspersed/AsyncInterspersedSequence.swift) | + [Tests](https://github.com/apple/swift-async-algorithms/blob/main/Tests/AsyncAlgorithmsTests/Interspersed/TestInterspersed.swift)] ```swift let numbers = [1, 2, 3].async.interspersed(with: 0)