Skip to content

Commit 9b1ec4a

Browse files
Fix minor typo in README.md code sample (#242)
`withThrowingTaskgroup` was written with a lowercase `g` Signed-off-by: Natan Rolnik <[email protected]> Co-authored-by: Adam Fowler <[email protected]>
1 parent 4f72314 commit 9b1ec4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The valkey-swift project uses a connection pool, which requires a background pro
88

99
```swift
1010
let valkeyClient = ValkeyClient(.hostname("localhost", port: 6379), logger: logger)
11-
try await withThrowingTaskgroup(of: Void.self) { group in
11+
try await withThrowingTaskGroup(of: Void.self) { group in
1212
group.addTask {
1313
// run connection pool in the background
1414
await valkeyClient.run()

0 commit comments

Comments
 (0)