diff --git a/Tusker/Screens/Preferences/WellnessPrefsView.swift b/Tusker/Screens/Preferences/WellnessPrefsView.swift index 100c26fe..57434271 100644 --- a/Tusker/Screens/Preferences/WellnessPrefsView.swift +++ b/Tusker/Screens/Preferences/WellnessPrefsView.swift @@ -24,9 +24,9 @@ struct WellnessPrefsView: View { } private var showFavAndReblogCount: some View { - Section(footer: Text("Control whether total favorite and reblog counts are shown for the main post in conversations.")) { + Section(footer: Text("Control whether the focused post in the conversation view shows total favorite and reblog counts.")) { Toggle(isOn: $preferences.showFavoriteAndReblogCounts) { - Text("Show Favorite and Reblog Counts") + Text("Favorite and Reblog Counts in Conversations") } } }