chore: func naming and comments

Fixed typo in comments.
This commit is contained in:
Gaukas Wang 2022-11-01 11:45:56 -06:00
parent 5279971277
commit 9ee1badf9a
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D

View file

@ -14,10 +14,10 @@ import (
"strconv"
)
// UtlsIdSpec converts a ClientHelloID to a corresponding ClientHelloSpec.
// UTLSIdToSpec converts a ClientHelloID to a corresponding ClientHelloSpec.
//
// Exported internal function utlsIdToSpec per request.
func UtlsIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
func UTLSIdToSpec(id ClientHelloID) (ClientHelloSpec, error) {
return utlsIdToSpec(id)
}