Skip to content

Commit 462e6cd

Browse files
Apply suggestions from code review
Co-authored-by: Emídio Neto <[email protected]>
1 parent 4874db4 commit 462e6cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/examples/metrics/reader/synchronous_guage_read.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def read_humidity(options: CallbackOptions) -> Iterable[Observation]:
6060

6161
guage = meter.create_observable_gauge(
6262
name="synchronous_gauge_temperature",
63-
description="Gauage value captured synchronously",
63+
description="Gauge value captured synchronously",
6464
callbacks=[read_temperature],
6565
)
6666

@@ -76,7 +76,7 @@ def read_humidity(options: CallbackOptions) -> Iterable[Observation]:
7676
# Invoking `collect` will read all measurements assigned to the reader
7777
guage2 = meter.create_observable_gauge(
7878
name="synchronous_gauge_humidity",
79-
description="Gauage value captured synchronously",
79+
description="Gauge value captured synchronously",
8080
callbacks=[read_humidity],
8181
)
8282
print("--- Multiple Measurments ---", flush=True)

0 commit comments

Comments
 (0)