go fmt so code
authorspf13 <steve.francia@gmail.com>
Sun, 29 Sep 2013 06:07:41 +0000 (02:07 -0400)
committerspf13 <steve.francia@gmail.com>
Sun, 29 Sep 2013 06:10:29 +0000 (02:10 -0400)
hugolib/site.go

index 58f770d5a2521e7d1069abb45ca269e58214e16a..3511b6a13a66b733dcd2e7a76eccc1df670cd3d4 100644 (file)
@@ -25,15 +25,15 @@ import (
        "github.com/spf13/nitro"
        "html/template"
        "io"
+       "net/url"
        "os"
        "strings"
        "time"
-       "net/url"
 )
 
 var DefaultTimer = nitro.Initalize()
 
-func MakePermalink(base *url.URL, path *url.URL) (*url.URL) {
+func MakePermalink(base *url.URL, path *url.URL) *url.URL {
        return base.ResolveReference(path)
 }
 
@@ -542,7 +542,7 @@ func (s *Site) Stats() {
        }
 }
 
-func permalink(s *Site, plink string) (template.HTML) {
+func permalink(s *Site, plink string) template.HTML {
        base, err := url.Parse(string(s.Config.BaseUrl))
        if err != nil {
                panic(err)