@@ -11,25 +11,25 @@ import (
1111)
1212
1313var (
14- ErrCheckInternal = errors .New ("Internal check error" )
14+ ErrCheckInternal = errors .New ("internal check error" )
1515
1616 // ErrForbiddenDomain is the error thrown if visiting
1717 // a domain which is not allowed in AllowedDomains
18- ErrForbiddenDomain = errors .New ("Forbidden domain" )
19- ErrForbiddenPath = errors .New ("Forbidden path" )
18+ ErrForbiddenDomain = errors .New ("forbidden domain" )
19+ ErrForbiddenPath = errors .New ("forbidden path" )
2020
2121 // ErrMissingURL is the error type for missing URL errors
22- ErrMissingURL = errors .New ("Missing URL" )
22+ ErrMissingURL = errors .New ("missing URL" )
2323 // ErrMaxDepth is the error type for exceeding max depth
24- ErrMaxDepth = errors .New ("Max depth limit reached" )
24+ ErrMaxDepth = errors .New ("max depth limit reached" )
2525 // ErrForbiddenURL is the error thrown if visiting
2626 // a URL which is not allowed by URLFilters
27- ErrForbiddenURL = errors .New ("ForbiddenURL " )
27+ ErrForbiddenURL = errors .New ("forbidden URL " )
2828
2929 // ErrRobotsTxtBlocked is the error type for robots.txt errors
3030 ErrRobotsTxtBlocked = errors .New ("URL blocked by robots.txt" )
3131 // ErrEmptyProxyURL is the error type for empty Proxy URL list
32- ErrEmptyProxyURL = errors .New ("Proxy URL list is empty" )
32+ ErrEmptyProxyURL = errors .New ("proxy URL list is empty" )
3333 // ErrAbortedAfterHeaders is the error returned when OnResponseHeaders aborts the transfer.
34- ErrAbortedAfterHeaders = errors .New ("Aborted after receiving response headers" )
34+ ErrAbortedAfterHeaders = errors .New ("aborted after receiving response headers" )
3535)
0 commit comments