Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify documentation. #152

Merged
merged 2 commits into from
Dec 4, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ external server:

```swift
private enum APIClientKey: DependencyKey {
static let liveValue = APIClient.live
static let liveValue = APIClient(/*
Construct the "live" API Client that actually makes network
requests and communicates with the outside world.
*/)
}
```

Expand Down Expand Up @@ -75,7 +78,10 @@ protocol:

```swift
extension APIClient: DependencyKey {
static let liveValue = APIClient.live
static let liveValue = APIClient(/*
Construct the "live" API Client that actually makes network
requests and communicates with the outside world.
*/)
}

extension DependencyValues {
Expand Down