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 /// }