From 1e0ed8d6a8a89cb87fcd60c87fb983972d90a731 Mon Sep 17 00:00:00 2001
From: Cory Dransfeldt <hi@coryd.dev>
Date: Mon, 17 Jul 2023 19:31:42 -0700
Subject: [PATCH] chore: alphabatize + edit exceptions

---
 src/_data/music.js | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/src/_data/music.js b/src/_data/music.js
index 1f16c5a3..fcb73c77 100644
--- a/src/_data/music.js
+++ b/src/_data/music.js
@@ -14,20 +14,21 @@ const sanitizeAlbum = (album) => {
 
 const titleCase = (string) => {
   const exceptions = [
-    'of',
-    'the',
+    'a',
     'and',
     'but',
+    'an',
     'for',
     'if',
-    'nor',
-    'or',
-    'so',
-    'yet',
-    'a',
-    'an',
+    'in',
     'is',
     'it',
+    'nor',
+    'of',
+    'or',
+    'so',
+    'the',
+    'yet',
   ]
   if (!string) return ''
   return string