make gofmt

This commit is contained in:
Benjamin Elder 2022-09-06 11:06:52 -07:00
parent 95061e04bb
commit 70893fd18a
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ func TestIntegrationMain(t *testing.T) {
}
}
// helper that calls `try()`` in a loop until the deadline `until`
// helper that calls `try() in a loop until the deadline `until`
// has passed or `try()`returns true, returns whether try ever returned true
func tryUntil(until time.Time, try func() bool) bool {
for until.After(time.Now()) {

View File

@ -24,7 +24,7 @@ import (
// match a netip.Addr to the associated Prefix if any and return the value
// associated with it of type V.
//
// Use NewTrieMap to instantiate
// # Use NewTrieMap to instantiate
//
// NOTE: This is insert-only (no delete) and insertion is *not* thread-safe.
//