From 414d3bbbd830dc4d73b9200b09930cc1d9caa9d7 Mon Sep 17 00:00:00 2001 From: QEDeD Date: Fri, 27 Feb 2026 15:02:28 +0100 Subject: [PATCH] Fix typo in comment about fsnotify behavior Correct loose (opposite of tight) to lose (opposite of keep). --- hscontrol/dns/extrarecords.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscontrol/dns/extrarecords.go b/hscontrol/dns/extrarecords.go index 525af62b..b02a3c27 100644 --- a/hscontrol/dns/extrarecords.go +++ b/hscontrol/dns/extrarecords.go @@ -100,7 +100,7 @@ func (e *ExtraRecordsMan) Run() { e.updateRecords() - // If a file is removed or renamed, fsnotify will loose track of it + // If a file is removed or renamed, fsnotify will lose track of it // and not watch it. We will therefore attempt to re-add it with a backoff. case fsnotify.Remove, fsnotify.Rename: _, err := backoff.Retry(context.Background(), func() (struct{}, error) {