Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
destel committed Mar 22, 2024
1 parent 1173979 commit 080b6e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func streamLines(ctx context.Context, url string) <-chan rill.Try[string] {
// ...
}

// dbMultiGet does a batch read from a key-value store. It returns the values for the given keys.
// dbMultiGet does a batch read from a key-value database. It returns the values for the given keys.
func dbMultiGet(ctx context.Context, keys ...string) ([]string, error) {
// ...
}
Expand Down
2 changes: 1 addition & 1 deletion examples/kv-read/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func streamLines(ctx context.Context, url string) <-chan rill.Try[string] {
return out
}

// dbMultiGet emulates a batch read from a key-value store. It returns the values for the given keys.
// dbMultiGet emulates a batch read from a key-value database. It returns the values for the given keys.
func dbMultiGet(ctx context.Context, keys ...string) ([]string, error) {
if err := ctx.Err(); err != nil {
return nil, err
Expand Down

0 comments on commit 080b6e9

Please sign in to comment.