[chore]: Bump golang.org/x/net from 0.29.0 to 0.30.0 (#3402)

This commit is contained in:
dependabot[bot] 2024-10-07 12:02:26 +00:00 committed by GitHub
commit 33bd97a535
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
44 changed files with 679 additions and 252 deletions

View file

@ -65,7 +65,7 @@ func LoadDLL(name string) (dll *DLL, err error) {
return d, nil
}
// MustLoadDLL is like LoadDLL but panics if load operation failes.
// MustLoadDLL is like LoadDLL but panics if load operation fails.
func MustLoadDLL(name string) *DLL {
d, e := LoadDLL(name)
if e != nil {