diff --git a/src/js/itemAvailability.js b/src/js/itemAvailability.js
index 92eab6f58a5a0bbfab26f7347404ce5da22dd523..d6c866328015f93013e22d391b24fd17979341c8 100644
--- a/src/js/itemAvailability.js
+++ b/src/js/itemAvailability.js
@@ -211,7 +211,6 @@ window.isClothingAccessible = (function() {
 	 * @param {string} string Name of wearable item
 	 * @returns {boolean}
 	 */
-
 	function entry(string) {
 		if (V.cheatMode === 1) {
 			return true;
@@ -227,11 +226,10 @@ window.isClothingAccessible = (function() {
 		return isAvailable(item);
 	}
 	/**
-	 * Returns array of wearable clothing in format [name, value], or player facing / game data.
+	 * Returns array of wearable clothing in format [name, value], basically player facing / game data.
 	 * @param {string} db Name of array to look in (such as "App.Data.misc.niceClothes")
 	 * @returns {Array}
 	 */
-	// returns array [.name, .value]
 	function array(db) {
 		const array = [];
 		db.forEach((i) => {