diff --git a/client/request_handler.go b/client/request_handler.go index 37ae12b4..4c4e70d1 100644 --- a/client/request_handler.go +++ b/client/request_handler.go @@ -1,4 +1,4 @@ -// Package client provides internal utilities for the twilio-go client library. +// Package client provides internal utilities for the sendgrid-go client library. package client import ( @@ -54,10 +54,10 @@ func (c *RequestHandler) BuildUrl(rawURL string) (string, error) { } if len(pieces) == 4 { - // product.region.twilio.com + // api.region.sendgrid.com region = pieces[1] } else if len(pieces) == 5 { - // product.edge.region.twilio.com + // api.edge.region.sendgrid.com - currently not supported in sendgrid edge = pieces[1] region = pieces[2] } diff --git a/client/version.go b/client/version.go index a563c3bb..c508830f 100644 --- a/client/version.go +++ b/client/version.go @@ -1,5 +1,5 @@ // Package config for config files. package client -// LibraryVersion specifies the current version of twilio-go. +// LibraryVersion specifies the current version of sendgrid-go. const LibraryVersion = "1.22.3"