diff --git a/internal/db/bundb/relationship_follow.go b/internal/db/bundb/relationship_follow.go index fa87070b3..042d12f37 100644 --- a/internal/db/bundb/relationship_follow.go +++ b/internal/db/bundb/relationship_follow.go @@ -256,8 +256,8 @@ func (r *relationshipDB) DeleteFollow( deleted.AccountID = sourceAccountID deleted.TargetAccountID = targetAccountID - // Delete all blocks either from - // account, or targeting account, + // Delete follow from origin + // account, to targeting account, // returning the deleted models. if _, err := r.db.NewDelete(). Model(&deleted). diff --git a/internal/db/bundb/relationship_follow_req.go b/internal/db/bundb/relationship_follow_req.go index 4ae156ab7..fc0ca5c0a 100644 --- a/internal/db/bundb/relationship_follow_req.go +++ b/internal/db/bundb/relationship_follow_req.go @@ -298,8 +298,8 @@ func (r *relationshipDB) DeleteFollowRequest( deleted.AccountID = sourceAccountID deleted.TargetAccountID = targetAccountID - // Delete all blocks either from - // account, or targeting account, + // Delete all follow reqs either + // from account, or targeting account, // returning the deleted models. if _, err := r.db.NewDelete(). Model(&deleted).