From f063050299432d68561a5ebfb2392acbc9f49542 Mon Sep 17 00:00:00 2001 From: Janosch Hildebrand Date: Wed, 1 Oct 2025 15:21:35 +0200 Subject: [PATCH] Fix typo in doc comment for share --- Sources/AsyncAlgorithms/AsyncShareSequence.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/AsyncAlgorithms/AsyncShareSequence.swift b/Sources/AsyncAlgorithms/AsyncShareSequence.swift index 6c76a4d1..ebe3492d 100644 --- a/Sources/AsyncAlgorithms/AsyncShareSequence.swift +++ b/Sources/AsyncAlgorithms/AsyncShareSequence.swift @@ -33,7 +33,7 @@ where Element: Sendable, Self: SendableMetatype, AsyncIterator: SendableMetatype /// ## Example Usage /// /// ```swift - /// let numbers = [1, 2, 3, 4, 5].share.map { + /// let numbers = [1, 2, 3, 4, 5].async.map { /// try? await Task.sleep(for: .seconds(1)) /// return $0 /// }