Make godoc happy

This commit is contained in:
kayos@tcp.direct 2022-01-01 23:44:05 -08:00
parent 124fd53ebc
commit 37d32621e8
2 changed files with 14 additions and 1 deletions

13
LICENSE Normal file
View File

@ -0,0 +1,13 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2021 yung innanet <kayos@tcp.direct>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.

View File

@ -11,7 +11,7 @@ func Test_RNG(t *testing.T) {
one := RNG(55555) one := RNG(55555)
t.Logf("Random0: %d Random1: %d", zero, one) t.Logf("Random0: %d Random1: %d", zero, one)
if zero == one { if zero == one {
t.Fatal("RNG hit a duplicate") t.Errorf("RNG hit a duplicate! %s == %s", zero, one)
} }
zero = 0 zero = 0
one = 0 one = 0