Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit a9c2db8

Browse files
committed
Use single quotes
1 parent efad512 commit a9c2db8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

globals.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
export namespace globals {
22
export const yourName = 'Alyssa P. Hacker';
3-
export const siteName = `My Awesome Blog`;
4-
export const siteDescription = "I write about code 'n stuff";
3+
export const siteName = 'My Awesome Blog';
4+
export const siteDescription = 'I write about code \'n stuff';
55
export const siteCreationDate = 'March 3, 2020 04:00:00 GMT';
66
export const twitterHandle = '@alyssaphacker';
7-
export const email = `alyssa@example.com`;
7+
export const email = 'alyssa@example.com';
88
export const url = 'https://alyssaphacker.com';
9-
export const accentColor = `#4fc2b4`;
9+
export const accentColor = '#4fc2b4';
1010
export const googleAnalyticsId = ``; // e.g. 'UA-999999999-1'
1111
}

0 commit comments

Comments
 (0)