Remove the unnecessary line break of the TOC footer

This commit is contained in:
yosssi 2014-05-13 00:39:28 +09:00
parent 8abc1cae37
commit ff2ab748eb

3
toc.go
View File

@ -62,8 +62,7 @@ func writeTOCAsset(w io.Writer, asset *Asset) error {
// writeTOCFooter writes the table of contents file footer. // writeTOCFooter writes the table of contents file footer.
func writeTOCFooter(w io.Writer) error { func writeTOCFooter(w io.Writer) error {
_, err := fmt.Fprintf(w, ` _, err := fmt.Fprintf(w, `}
}
`) `)
return err return err
} }