From f2738f9b4bd4cecae5a6ef972da16c2571b53a72 Mon Sep 17 00:00:00 2001 From: Rick Clephas Date: Sun, 13 Feb 2022 14:48:07 +0100 Subject: [PATCH] Update README --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 690fee25..51201c31 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ plugins { ### Swift (Swift Package Manager) -All Swift implementations are also available via the Swift Package Manager. +The Swift implementations are available via the Swift Package Manager. Just add it to your `Package.swift` file: ```swift dependencies: [ @@ -85,8 +85,7 @@ Or add it in Xcode by going to `File` > `Add Packages...` and providing the URL: ### Swift (CocoaPods) -Now for Swift you can choose from a couple of implementations. -Add one or more of the following libraries to your `Podfile`: +If you use CocoaPods add one or more of the following libraries to your `Podfile`: ```ruby pod 'KMPNativeCoroutinesAsync' # Swift 5.5 Async/Await implementation pod 'KMPNativeCoroutinesCombine' # Combine implementation @@ -96,7 +95,7 @@ pod 'KMPNativeCoroutinesRxSwift' # RxSwift implementation ## Usage Using your Kotlin Coroutines code from Swift is almost as easy as calling the Kotlin code. -Just use the wrapper functions in Swift to get Observables, Publishers, AsyncStreams or async functions. +Just use the wrapper functions in Swift to get async functions, AsyncStreams, Publishers or Observables. ### Kotlin