summaryrefslogtreecommitdiff
path: root/rfc.go
diff options
context:
space:
mode:
Diffstat (limited to 'rfc.go')
-rw-r--r--rfc.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/rfc.go b/rfc.go
index 9877893..a28afc0 100644
--- a/rfc.go
+++ b/rfc.go
@@ -91,10 +91,12 @@ func refs(prefix string, s []string) (ret string) {
func (e Entry) String() string {
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))
- ret += fmt.Sprint(refs("Obsoleted by", e.ObsoletedBy))
+ ret += fmt.Sprint(refs("updates", e.Updates))
+ ret += fmt.Sprint(refs("obsoletes", e.Obsoletes))
+ ret += fmt.Sprint(refs("updated by", e.UpdatedBy))
+ ret += fmt.Sprint(refs("obsoleted by", e.ObsoletedBy))
+ ret += fmt.Sprint(refs("is also", e.IsAlso))
+ ret += fmt.Sprint(refs("see also", e.SeeAlso))
return ret
}