diff options
Diffstat (limited to 'website/src/data')
| -rw-r--r-- | website/src/data/links.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/website/src/data/links.ts b/website/src/data/links.ts index cd1e746..6816149 100644 --- a/website/src/data/links.ts +++ b/website/src/data/links.ts @@ -7,7 +7,7 @@ type Link = { isoDateAdded: `20${Digit}${Digit}-${'0'|'1'}${Digit}-${'0'|'1'|'2'|'3'}${Digit}`, }; -const links: Link[] = [ +const LINKS: Link[] = [ { href: 'https://dl.acm.org/doi/pdf/10.1145/3613904.3642596', title: 'Is Stack Overflow Obsolete? An Empirical Study of the Characteristics of ChatGPT Answers to Stack Overflow Questions', @@ -28,4 +28,4 @@ const links: Link[] = [ }, ]; -export default links; +export default LINKS; |
