aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pkg/query/outputs.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/query/outputs.go b/pkg/query/outputs.go
index 92331ef..af00bdf 100644
--- a/pkg/query/outputs.go
+++ b/pkg/query/outputs.go
@@ -100,6 +100,7 @@ func (o DefaultOutput) writeDoc(w io.Writer, doc *index.Document) (int, error) {
[]byte(strings.Join(doc.Authors, ",")),
[]byte(" tags:"),
[]byte(strings.Join(doc.Tags, ",")),
+ {'\n'},
}
for _, b := range s {
cnt, err := w.Write(b)