From a05fc48683e1730cd462db33ca2181bc9528b3df Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Wed, 19 Jun 2024 13:56:41 +0200 Subject: [PATCH] Update wording in code comment (IOS-275) --- .../HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mastodon/Scene/HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift b/Mastodon/Scene/HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift index 2a6f5848b..877d469e1 100644 --- a/Mastodon/Scene/HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift +++ b/Mastodon/Scene/HomeTimeline/HomeTimelineViewModel+LoadLatestState.swift @@ -154,7 +154,7 @@ extension HomeTimelineViewModel.LoadLatestState { toAdd = statuses.map({ MastodonFeed.fromStatus($0.asMastodonStatus, kind: .home) }) toAdd.last?.hasMore = true } else { - /// We do not have existing items, no load more is required as there can't be a gap + /// We do not have existing items, no _Load More_ is required as there is no gap toAdd = statuses.map({ MastodonFeed.fromStatus($0.asMastodonStatus, kind: .home) }) }