commit 945bf12efd48f91f4c015c8e3ea78e0474972d16 from: Oliver Lowe date: Sat Mar 16 06:36:08 2024 UTC apub: correct actor Address() doc typo commit - fb77ab166443e8882652dfdbd580a6732494bfd8 commit + 945bf12efd48f91f4c015c8e3ea78e0474972d16 blob - 5571bff0055df499cff1878141becb3d4c22164a blob + b345580cbf145ad67518ffb16831a5f1f54ef4c3 --- apub.go +++ apub.go @@ -151,10 +151,10 @@ type PublicKey struct { // 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" +// "Oliver Lowe" func (a *Actor) Address() *mail.Address { if a.Username == "" && a.Name == "" { return &mail.Address{"", a.ID}