Remove the unnecessary line break of the TOC footer

pull/4/head
yosssi 2014-05-13 00:39:28 +09:00
parent 8abc1cae37
commit ff2ab748eb
1 changed files with 1 additions and 2 deletions

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.
func writeTOCFooter(w io.Writer) error {
_, err := fmt.Fprintf(w, `
}
_, err := fmt.Fprintf(w, `}
`)
return err
}