1
1
Fork 0
mirror of https://github.com/OJ/gobuster.git synced 2024-05-23 03:26:02 +02:00
This commit is contained in:
rustfix 2024-04-15 03:33:24 +00:00 committed by GitHub
commit 69860a6306
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@ type Set[T comparable] struct {
Set map[T]bool
}
// NewSSet creates a new initialized Set
// NewSet creates a new initialized Set
func NewSet[T comparable]() Set[T] {
return Set[T]{Set: map[T]bool{}}
}