Skip to content

Commit bfc4afd

Browse files
committed
Fix links and examples in README
1 parent 75032c9 commit bfc4afd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<a href="https://swiftpackageindex.com/swiftkube/client">
1010
<img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fswiftkube%2Fclient%2Fbadge%3Ftype%3Dplatforms"/>
1111
</a>
12-
<a href="https://v1-28.docs.kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/">
12+
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.32/">
1313
<img src="https://img.shields.io/badge/Kubernetes-1.32.0-blue.svg" alt="Kubernetes 1.32.0"/>
1414
</a>
1515
<a href="https://swift.org/package-manager">
@@ -101,12 +101,12 @@ To create a client just import `SwiftkubeClient` and init an instance.
101101
```
102102

103103
You should shut down the `KubernetesClient` instance when you're done using it, which in turn shuts down the underlying
104-
`HTTPClient`. Thus, you shouldn't call `client.syncShutdown()` before all requests have finished. You can also shut down
104+
`HTTPClient`. Thus, you shouldn't call `client.shutdown()` before all requests have finished. You can also shut down
105105
the client asynchronously in an async/await context or by providing a `DispatchQueue` for the completion callback.
106106

107107
```swift
108108
// when finished close the client
109-
try client.syncShutdown()
109+
try client.syncShutdown()
110110

111111
// async/await
112112
try await client.shutdown()

0 commit comments

Comments
 (0)