From acd47b870f10206b27a1cadc3afe0484ae15a4f7 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Mon, 8 Jul 2019 18:07:44 +0200 Subject: [PATCH] fixing typo in godoc in pkg random --- internal/pkg/random/random_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pkg/random/random_test.go b/internal/pkg/random/random_test.go index b7a37060..aaf94f17 100644 --- a/internal/pkg/random/random_test.go +++ b/internal/pkg/random/random_test.go @@ -10,7 +10,7 @@ func TestGet(t *testing.T) { var rands []string // use case: for 1 000 concurrent // requests (which is a big Gotenberg instance), - // none should have the identifier. + // none should have the same identifier. for i := 0; i < 1000; i++ { rands = append(rands, Get()) }