Skip to content

Commit

Permalink
Fix incorrect apostrophe usage (#1240)
Browse files Browse the repository at this point in the history
  • Loading branch information
will authored Sep 10, 2024
1 parent 0750453 commit 5c3cdad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions component/head.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@ const Head = () => {
<meta name="viewport" content="width=device-width" />
<meta
name="description"
content="A friendly reminder to all Developers, Designers, CEO's"
content="A friendly reminder to all Developers, Designers, CEOs"
/>

<meta itemProp="name" content="Should I Deploy Today" />
<meta
itemProp="description"
content="A friendly reminder to all Developers, Designers, CEO's"
content="A friendly reminder to all Developers, Designers, CEOs"
/>

<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Should I Deploy Today" />
<meta
name="twitter:description"
content="A friendly reminder to all Developers, Designers, CEO's"
content="A friendly reminder to all Developers, Designers, CEOs"
/>

<meta property="og:title" content="Should I Deploy Today" />
<meta
property="og:description"
content="A friendly reminder to all Developers, Designers, CEO's"
content="A friendly reminder to all Developers, Designers, CEOs"
/>
<meta property="og:url" content="https://shouldideploy.today" />
<meta property="og:site_name" content="Should I Deploy Today" />
Expand Down

1 comment on commit 5c3cdad

@baires
Copy link
Owner

@baires baires commented on 5c3cdad Sep 10, 2024

Choose a reason for hiding this comment

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

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 100% 61/61
🟢 Branches 93.75% 30/32
🟢 Functions 100% 20/20
🟢 Lines 100% 60/60

Test suite run success

37 tests passing in 2 suites.

Report generated by 🧪jest coverage report action from 5c3cdad

Please sign in to comment.