Skip to content

Commit 86bae21

Browse files
committed
chore: fix link
1 parent 45d28c1 commit 86bae21

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
> use it to monitor applications and set up automatic alerts to receive notifications via email,
1111
> Slack, Telegram, and others.
1212
>
13-
> See [OpenTelemetry](master/example/otel) example which demonstrates how you can use Uptrace to monitor
14-
> go-redis.
13+
> See [OpenTelemetry](example/otel/README.md) example which demonstrates how you can use Uptrace to
14+
> monitor go-redis.
1515
1616
## Documentation
1717

@@ -107,7 +107,8 @@ func ExampleClient() {
107107
}
108108
```
109109

110-
The above can be modified to specify the version of the RESP protocol by adding the `protocol` option to the `Options` struct:
110+
The above can be modified to specify the version of the RESP protocol by adding the `protocol`
111+
option to the `Options` struct:
111112

112113
```go
113114
rdb := redis.NewClient(&redis.Options{
@@ -121,7 +122,10 @@ The above can be modified to specify the version of the RESP protocol by adding
121122

122123
### Connecting via a redis url
123124

124-
go-redis also supports connecting via the [redis uri specification](https://github.com/redis/redis-specifications/tree/master/uri/redis.txt). The example below demonstrates how the connection can easily be configured using a string, adhering to this specification.
125+
go-redis also supports connecting via the
126+
[redis uri specification](https://github.com/redis/redis-specifications/tree/master/uri/redis.txt).
127+
The example below demonstrates how the connection can easily be configured using a string, adhering
128+
to this specification.
125129

126130
```go
127131
import (
@@ -208,7 +212,8 @@ Lastly, run:
208212
go test
209213
```
210214
211-
Another option is to run your specific tests with an already running redis. The example below, tests against a redis running on port 9999.:
215+
Another option is to run your specific tests with an already running redis. The example below, tests
216+
against a redis running on port 9999.:
212217
213218
```shell
214219
REDIS_PORT=9999 go test <your options>

0 commit comments

Comments
 (0)