From f35f3275bab3c88db33e78de7a353f9f15187fd4 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 17 Feb 2020 21:52:16 -0500
Subject: [PATCH] comment fix

fix doc
---
 src/js/itemAvailability.js | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/js/itemAvailability.js b/src/js/itemAvailability.js
index 92eab6f58a5..d6c86632801 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) => {
-- 
GitLab