luraproject / lura

The documentation of an exported type should start with the type’s name GO-D5002
Documentation
Minor
6 months ago8 months old
comment on exported type SafeURIParser should be of the form "SafeURIParser ..." (with optional leading article)
 21	GetEndpointPath(string, []string) string
 22}
 23
 24// Like URIParser but with safe versions of the clean host functionality that 25// does not panic but returns an error.
 26type SafeURIParser interface {
 27	SafeCleanHosts([]string) ([]string, error)