From ae1fefcfdd712a218021d456c607ae7bbf00a2d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=E2=80=99Aquino?= Date: Mon, 16 Mar 2026 20:00:02 -0700 Subject: [PATCH] Fix subject-verb agreement issue in user-facing label "Notes... usually contains" should be "Notes... usually contain" since "Notes" is plural. Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- damus/Features/Onboarding/OnboardingContentSettings.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Features/Onboarding/OnboardingContentSettings.swift b/damus/Features/Onboarding/OnboardingContentSettings.swift index 15dd61dd..230437a3 100644 --- a/damus/Features/Onboarding/OnboardingContentSettings.swift +++ b/damus/Features/Onboarding/OnboardingContentSettings.swift @@ -38,7 +38,7 @@ extension OnboardingSuggestionsView { Toggle(NSLocalizedString("Hide notes with #nsfw tags", comment: "Setting to hide notes with not safe for work tags"), isOn: $settings.hide_nsfw_tagged_content) .toggleStyle(.switch) - Text("Notes with the #nsfw tag usually contains adult content or other \"Not safe for work\" content", comment: "Explanation of what NSFW means") + Text("Notes with the `#nsfw` tag usually contain adult content or other \"Not safe for work\" content", comment: "Explanation of what NSFW means") .font(.caption) .foregroundColor(.secondary) .padding(.bottom, 10)