Skip to content

Commit c470205

Browse files
committedMar 24, 2025·
fix documentation error for the Telemetry events
1 parent aacefb4 commit c470205

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎lib/fun_with_flags/telemetry.ex

+6-6
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ defmodule FunWithFlags.Telemetry do
3030
event is always emitted every time a flag is queried.
3131
3232
Metadata:
33-
* `flag_name` (string), the name of the flag being read.
33+
* `flag_name` (atom), the name of the flag being read.
3434
3535
* `[:fun_with_flags, :persistence, :read_all_flags]`, emitted when all flags
3636
are read from the DB. No extra metadata.
@@ -43,20 +43,20 @@ defmodule FunWithFlags.Telemetry do
4343
is always upserted.
4444
4545
Metadata:
46-
* `flag_name` (string), the name of the flag being written.
46+
* `flag_name` (atom), the name of the flag being written.
4747
* `gate` (`FunWithFlags.Gate`), the gate being upserted.
4848
4949
* `[:fun_with_flags, :persistence, :delete_flag]`, emitted when an entire flag
5050
is deleted from the DB.
5151
5252
Metadata:
53-
* `flag_name` (string), the name of the flag being deleted.
53+
* `flag_name` (atom), the name of the flag being deleted.
5454
5555
* `[:fun_with_flags, :persistence, :delete_gate]`, emitted when one of the flag's
5656
gates is deleted from the DB.
5757
5858
Metadata:
59-
* `flag_name` (string), the name of the flag whose gate is being deleted.
59+
* `flag_name` (atom), the name of the flag whose gate is being deleted.
6060
* `gate` (`FunWithFlags.Gate`), the gate being deleted.
6161
6262
* `[:fun_with_flags, :persistence, :reload]`, emitted when a flag is reloaded
@@ -65,7 +65,7 @@ defmodule FunWithFlags.Telemetry do
6565
the flag being reloaded from the DB.
6666
6767
Metadata:
68-
* `flag_name` (string), the name of the flag being reloaded.
68+
* `flag_name` (atom), the name of the flag being reloaded.
6969
7070
* `[:fun_with_flags, :persistence, :error]`, emitted for erorrs in any of the
7171
above operations.
@@ -75,7 +75,7 @@ defmodule FunWithFlags.Telemetry do
7575
appropriate error term returned by the underlying persistence adapters.
7676
* `original_event` (atom), the name of the original event that failed, e.g.
7777
`:read`, `:write`, `:delete_gate`, etc.
78-
* `flag_name` (string), the name of the flag being operated on, if supported
78+
* `flag_name` (atom), the name of the flag being operated on, if supported
7979
by the original event.
8080
* `gate` (`FunWithFlags.Gate`), the gate being operated on, if supported by
8181
the original event.

0 commit comments

Comments
 (0)
Please sign in to comment.