commit - fb77ab166443e8882652dfdbd580a6732494bfd8
commit + 945bf12efd48f91f4c015c8e3ea78e0474972d16
blob - 5571bff0055df499cff1878141becb3d4c22164a
blob + b345580cbf145ad67518ffb16831a5f1f54ef4c3
--- apub.go
+++ apub.go
// Address generates the most likely address of the Actor.
// The Actor's name (not the username) is used as the address' proper name, if present.
// Implementors should verify the address using WebFinger.
-// For example, the followers address for Actor ID
+// For example, the address for the Actor ID
// https://hachyderm.io/users/otl is:
//
-// "Oliver Lowe" <otl+followers@hachyderm.io>
+// "Oliver Lowe" <otl@hachyderm.io>
func (a *Actor) Address() *mail.Address {
if a.Username == "" && a.Name == "" {
return &mail.Address{"", a.ID}