Apply gofmt -s
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 25 May 2015 10:54:12 +0000 (12:54 +0200)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 25 May 2015 10:54:13 +0000 (12:54 +0200)
tpl/template_funcs_test.go
transform/absurlreplacer.go

index b1d611c11243ae31fae588c523566b662c57c202..cedbf0f31b5d81516a27dfdbd5cd5e2926619685 100644 (file)
@@ -1225,4 +1225,3 @@ func TestSafeURL(t *testing.T) {
                }
        }
 }
-
index 35f02ade32aab40383dc337f52528fdbac82e622..b9a8f3a691ee2e03022b333973c4a0d42d4d34c2 100644 (file)
@@ -49,9 +49,9 @@ type prefix struct {
 // - the matches array above must be expanded.
 // - the prefix must with the current logic end with '='
 var prefixes = []*prefix{
-       &prefix{r: []rune{'s', 'r', 'c', '='}, f: checkCandidateBase},
-       &prefix{r: []rune{'h', 'r', 'e', 'f', '='}, f: checkCandidateBase},
-       &prefix{r: []rune{'s', 'r', 'c', 's', 'e', 't', '='}, f: checkCandidateSrcset},
+       {r: []rune{'s', 'r', 'c', '='}, f: checkCandidateBase},
+       {r: []rune{'h', 'r', 'e', 'f', '='}, f: checkCandidateBase},
+       {r: []rune{'s', 'r', 'c', 's', 'e', 't', '='}, f: checkCandidateSrcset},
 }
 
 type absURLMatcher struct {