Skip to content

Commit ee57a71

Browse files
authored
Spelling (#9)
* spelling: ; otherwise, Signed-off-by: Josh Soref <[email protected]> * spelling: clickable Signed-off-by: Josh Soref <[email protected]> * spelling: contributions Signed-off-by: Josh Soref <[email protected]> * spelling: datacenter Signed-off-by: Josh Soref <[email protected]> * spelling: e.g., Signed-off-by: Josh Soref <[email protected]> * spelling: profile Signed-off-by: Josh Soref <[email protected]> * spelling: their Signed-off-by: Josh Soref <[email protected]> --------- Signed-off-by: Josh Soref <[email protected]>
1 parent a55fb28 commit ee57a71

File tree

10 files changed

+8
-8
lines changed

10 files changed

+8
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const SearchProfile = () => {
3939
className="flex gap-4"
4040
>
4141
<Input
42-
placeholder="e.g. torvalds, sindresorhus"
42+
placeholder="e.g., torvalds, sindresorhus"
4343
value={login}
4444
onChange={(event) => setLogin(event.target.value)}
4545
disabled={loading}

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { GlobalRankingSection } from './components/global-ranking-section';
77
import InsightsCarousel from './components/insights-carousel';
88
import { LanguageRankingSection } from './components/language-ranking-section';
99
import { MessengerIntegrationSection } from './components/messenger-integration-section';
10-
import { SearchProfile } from './components/search-profiile';
10+
import { SearchProfile } from './components/search-profile';
1111

1212
export default function Home() {
1313
return (

app/profile/[login]/components/overview-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Link } from '@/components/link/link';
66
import type { PageProfileOverviewQuery } from '@/types/generated/graphql';
77

88
import NotFound from '../not-found';
9-
import { UserContributionsList } from '../repositories/components/user-contriutions-list';
9+
import { UserContributionsList } from '../repositories/components/user-contributions-list';
1010
import { UserRepositoriesList } from '../repositories/components/user-repositories-list';
1111
import { buildProfileTabSEO } from '../seo';
1212
import { ProfileTimeline } from '../timeline/components/profile-timeline';

app/profile/[login]/components/tooltips.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const PersonaTooltip = () => (
1919

2020
export const GlobalRankTooltip = () => (
2121
<div className="max-w-72">
22-
This is your <b>highest rank</b> among {RANK_NAME.s}, {RANK_NAME.c}, and {RANK_NAME.f}. Go to the <b>Ranks</b> tab
22+
This is their <b>highest rank</b> among {RANK_NAME.s}, {RANK_NAME.c}, and {RANK_NAME.f}. Go to the <b>Ranks</b> tab
2323
to see detailed explanations of each ranking.
2424
</div>
2525
);

app/profile/[login]/repositories/components/user-contriutions-list.tsx renamed to app/profile/[login]/repositories/components/user-contributions-list.tsx

File renamed without changes.

app/profile/[login]/repositories/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { fetchProfilePageRepositories } from '@/graphql/helpers/fetch-profile-pa
88
import { LayoutLeftColumn } from '../components/layout-left-column';
99
import NotFound from '../not-found';
1010
import { buildProfileTabSEO } from '../seo';
11-
import { UserContributionsList } from './components/user-contriutions-list';
11+
import { UserContributionsList } from './components/user-contributions-list';
1212
import { UserRepositoriesList } from './components/user-repositories-list';
1313

1414
export async function generateMetadata({ params }: PageProps<'/profile/[login]/repositories'>): Promise<Metadata> {

app/wa/privacy/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default function PrivacyPolicy() {
9595
<section className="space-y-4">
9696
<h2 className="text-2xl font-bold">5. How we store and protect data</h2>
9797
<p>
98-
Data is stored on <span className="font-medium">Digital Ocean Amsterdam Datacentr-3</span>
98+
Data is stored on <span className="font-medium">Digital Ocean Amsterdam Datacenter-3</span>
9999
&nbsp;in encrypted databases and is never sold. Access is restricted to authorised personnel only.
100100
</p>
101101
</section>

badge/utils/get-contrast-text-color.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function getContrastTextColor(bgColor: string): 'black' | 'white' {
1717
// Calculate relative luminance (sRGB)
1818
const luminance = (0.299 * r + 0.587 * g + 0.114 * b) / 255;
1919

20-
// If luminance is high → use black, otherwise use white
20+
// If luminance is high → use black; otherwise, use white
2121
return luminance > 0.5 ? 'black' : 'white';
2222
}
2323

File renamed without changes.

components/ranking-table/ranking-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { getCountryFlag } from '@/utils/get-country-flag';
66
import { getRankingConfigByType } from '@/utils/get-ranking-config-by-type';
77
import { RankDelta } from '../rank-delta/rank-delta';
88
import { UserCard } from '../user-card/user-card';
9-
import { ClickableRow } from './clickale-row';
9+
import { ClickableRow } from './clickable-row';
1010

1111
type RankingTableProps = {
1212
rankingType: string;

0 commit comments

Comments
 (0)