Skip to content

Commit 606f3f8

Browse files
committed
Correct escaping muddle on apostrophe
1 parent a50e9a3 commit 606f3f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/404.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const NotFoundPage = ({ data, location }) => {
1818
const explanation = isPast ? `No Quarkus extensions were released in ${date}.` : isFuture ? `The Quarkus extensions for ${date} haven't been created yet.` : `There are no Quarkus extensions for ${date}.`
1919
message = "Quarkus contributors can do a lot of nifty things, but time travel isn't one of them. " + explanation
2020
} else {
21-
message = "You just hit a route that doesn't exist... the sadness."
21+
message = "You just hit a route that does not exist... the sadness."
2222
}
2323

2424
return (

0 commit comments

Comments
 (0)