From 6c030cd5737a6257e9b7ee2db232a24ccef294de Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Mon, 21 Mar 2022 15:15:52 +0100 Subject: fix a number of `godot` issues Still an unknown number remains but I am running out of patience. Adding dots is not the best use of my time. Signed-off-by: Valentin Rothberg --- utils/ports.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/ports.go') diff --git a/utils/ports.go b/utils/ports.go index 0a4f67dcc..57a6f8275 100644 --- a/utils/ports.go +++ b/utils/ports.go @@ -7,7 +7,7 @@ import ( "github.com/pkg/errors" ) -// Find a random, open port on the host +// Find a random, open port on the host. func GetRandomPort() (int, error) { l, err := net.Listen("tcp", ":0") if err != nil { -- cgit v1.2.3-54-g00ecf