style: fix typo

This commit is contained in:
Kevin Franklin Kim 2023-09-11 11:52:26 +02:00
parent f5b8bbbda3
commit 7537cbcc1a
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@ func Readme() string {
}
if len(configRows) > 0 {
md.Println("List of all registered config variabled with their defaults.")
md.Println("List of all registered config variables with their defaults.")
md.Println("")
md.Table([]string{"Key", "Type", "Required", "Default"}, configRows)
md.Println("")

View File

@ -463,7 +463,7 @@ func (s *Server) readmeHealthz() string {
if len(rows) > 0 {
md.Println("### Health probes")
md.Println("")
md.Println("List of all registered healthz probes that are being called during startup and runntime.")
md.Println("List of all registered healthz probes that are being called during startup and runtime.")
md.Println("")
md.Table([]string{"Name", "Probe", "Type", "Description"}, rows)
}

View File

@ -82,7 +82,7 @@ func ExampleNewHTTPReadme() {
//
// ### Config
//
// List of all registered config variabled with their defaults.
// List of all registered config variables with their defaults.
//
// | Key | Type | Required | Default |
// | ------------------------- | -------- | -------- | ---------- |
@ -111,7 +111,7 @@ func ExampleNewHTTPReadme() {
//
// ### Health probes
//
// List of all registered healthz probes that are being called during startup and runntime.
// List of all registered healthz probes that are being called during startup and runtime.
//
// | Name | Probe | Type | Description |
// | ---------------- | -------- | -------------------- | -------------------------------------- |