Skip to content
Open
Show file tree
Hide file tree
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 internal/dhcpsvc/v4.go
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ func (iface *dhcpInterfaceV4) handleSelecting(
// TODO(e.burkov): Implement.
}

// handleSelecting handles messages of type request in INIT-REBOOT state.
// handleInitReboot handles messages of type request in INIT-REBOOT state.
func (iface *dhcpInterfaceV4) handleInitReboot(
ctx context.Context,
rw responseWriter4,
Expand Down
2 changes: 1 addition & 1 deletion internal/filtering/filtering.go
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ func (d *DNSFilter) initFiltering(allowFilters, blockFilters []Filter) (err erro
return nil
}

// hostRules is a helper that converts a slice of host rules into a slice of the
// hostRulesToRules is a helper that converts a slice of host rules into a slice of the
// rules.Rule interface values.
func hostRulesToRules(netRules []*rules.HostRule) (res []rules.Rule) {
if netRules == nil {
Expand Down
2 changes: 1 addition & 1 deletion internal/querylog/decode.go
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ var resultHandlers = map[string]logEntryHandler{
},
}

// resultDecHandlers calls a decode handler for key if there is one.
// resultDecHandler calls a decode handler for key if there is one.
func (l *queryLog) resultDecHandler(
ctx context.Context,
name string,
Expand Down