summaryrefslogtreecommitdiff
path: root/src/pkg/http/url.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/http/url.go')
-rw-r--r--src/pkg/http/url.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/http/url.go b/src/pkg/http/url.go
index 65ad186e6..526c96aa2 100644
--- a/src/pkg/http/url.go
+++ b/src/pkg/http/url.go
@@ -20,9 +20,7 @@ type URLError struct {
Error os.Error;
}
-func (e *URLError) String() string {
- return e.Op + " " + e.URL + ": " + e.Error.String();
-}
+func (e *URLError) String() string { return e.Op + " " + e.URL + ": " + e.Error.String() }
func ishex(c byte) bool {
switch {