summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rfc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfc.go b/rfc.go
index bba5aa8..9877893 100644
--- a/rfc.go
+++ b/rfc.go
@@ -90,7 +90,7 @@ func refs(prefix string, s []string) (ret string) {
}
func (e Entry) String() string {
- ret := fmt.Sprint(e.DocID, " ", e.Title)
+ ret := fmt.Sprint(e.DocID, ": ", e.Title)
ret += fmt.Sprint(refs("Updates", e.Updates))
ret += fmt.Sprint(refs("Obsoletes", e.Obsoletes))
ret += fmt.Sprint(refs("Updated by", e.UpdatedBy))