Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wizard/wizard.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func (m RootModel) presentDNSDialog() (tea.Model, tea.Cmd) {
{"opendns", "Use OpenDNS https://use.opendns.com/"},
}

// shuffle options, so no service will get default treatment (on avarage)
// shuffle options, so no service will get default treatment (on average)
rand.Shuffle(len(opts), func(i, j int) { opts[i], opts[j] = opts[j], opts[i] })

opts = append(opts, opt{"", "Do not setup any DNS for clients (may cause leakage)"})
Expand Down