Skip to content

Commit 02157f4

Browse files
authored
docs: update OpenTelemetry hook README (#49)
Signed-off-by: Federico Bond <[email protected]>
1 parent 660a0cb commit 02157f4

File tree

1 file changed

+2
-2
lines changed
  • hooks/openfeature-hooks-opentelemetry

1 file changed

+2
-2
lines changed

hooks/openfeature-hooks-opentelemetry/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ More information on hooks can be found in the [OpenFeature documentation][hook-c
1818

1919
### Register Globally
2020

21-
The `TracingHook` can be set on the OpenFeature singleton. This will ensure that every flag evaluation will always create a span event, if am active span is available.
21+
The `TracingHook` can be set globally. This will ensure that every flag evaluation will always create a span event, if an active span is available.
2222

2323
```python
2424
from openfeature import api
@@ -29,7 +29,7 @@ api.add_hooks(TracingHook())
2929

3030
### Register Per Client
3131

32-
The `TracingHook` can be set on an individual client. This should only be done if it wasn't set globally and other clients shouldn't use this hook. Setting the hook on the client will ensure that every flag evaluation performed by this client will always create a span event, if an active span is available.
32+
The `TracingHook` can also be set on an individual client. This should only be done if it wasn't set globally and other clients shouldn't use this hook. Setting the hook on the client will ensure that every flag evaluation performed by this client will always create a span event, if an active span is available.
3333

3434
```python
3535
from openfeature import api

0 commit comments

Comments
 (0)