Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/components/landing/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default function Hero() {
<h1 className="fade-in slide-in-from-bottom-6 animate-in text-balance font-bold text-4xl leading-[1.1] tracking-tight delay-100 duration-700 sm:text-5xl md:text-6xl lg:text-7xl">
Analytics that{" "}
<span className="underline decoration-2 decoration-wavy underline-offset-8">
runs <span className="text-muted-foreground">itself</span>
run <span className="text-muted-foreground">itself</span>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Subject-verb agreement mismatch with reflexive pronoun

Changing runsrun treats "Analytics" as a plural noun, but the reflexive pronoun itself on this same line is singular. This creates a new grammatical inconsistency: "Analytics that run itself."

If the intent is to treat "Analytics" as plural, itself should become themselves. Alternatively, the original "runs itself" was internally consistent (treating "Analytics" as a singular product name).

Suggested fix (keeping the plural verb):

Suggested change
run <span className="text-muted-foreground">itself</span>
run <span className="text-muted-foreground">themselves</span>

Or revert to the original phrasing which was grammatically consistent:

							runs <span className="text-muted-foreground">itself</span>

</span>
</h1>

Expand Down
Loading