We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b01f9e2 commit 1b64c2eCopy full SHA for 1b64c2e
probe/probe.go
@@ -32,7 +32,7 @@ func (f ProberFunc) Probe(ctx context.Context) error {
32
return f(ctx)
33
}
34
35
-// Group of Probers to probe all at once.
+// Group of Probers to probe.
36
type Group map[string]Prober
37
38
// ProbeAll executes Probe() on each [Prober] returning a map of results and a
@@ -51,7 +51,7 @@ func (g Group) ProbeAll(ctx context.Context) (map[string]error, bool) {
51
return results, ok
52
53
54
-// ServeHTTP probes the state of all Probers in the group.
+// ServeHTTP probes the state of all [Prober] in the group.
55
//
56
// Response status codes:
57
// - 200 OK (all probes were successful)
0 commit comments