summaryrefslogtreecommitdiffstats
path: root/markup/rst/convert.go
diff options
context:
space:
mode:
Diffstat (limited to 'markup/rst/convert.go')
-rw-r--r--markup/rst/convert.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/markup/rst/convert.go b/markup/rst/convert.go
index cbc15c81a..c397bf5fe 100644
--- a/markup/rst/convert.go
+++ b/markup/rst/convert.go
@@ -81,7 +81,7 @@ func (c *rstConverter) getRstContent(src []byte, ctx converter.DocumentContext)
// TODO(bep) check if rst2html has a body only option.
bodyStart := bytes.Index(result, []byte("<body>\n"))
if bodyStart < 0 {
- bodyStart = -7 //compensate for length
+ bodyStart = -7 // compensate for length
}
bodyEnd := bytes.Index(result, []byte("\n</body>"))