Skip to content

Commit

Permalink
Update README.md (#2562)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielt1263 authored Dec 4, 2023
1 parent 65bec4c commit 5516392
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,12 +209,12 @@ Create a `Package.swift` file.
import PackageDescription

let package = Package(
name: "RxTestProject",
name: "RxProject",
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.6.0"))
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0"))
],
targets: [
.target(name: "RxTestProject", dependencies: ["RxSwift", "RxCocoa"])
.target(name: "RxProject", dependencies: ["RxSwift", .product(name: "RxCocoa", package: "RxSwift")]),
]
)
```
Expand Down

0 comments on commit 5516392

Please sign in to comment.