From fc4db0e3ee18be4d4f6a98740539bdb1f80170f4 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sat, 26 Dec 2020 20:37:52 -0500
Subject: [PATCH] remove some needless comments

---
 src/facilities/toyShop/toyShop.js | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/facilities/toyShop/toyShop.js b/src/facilities/toyShop/toyShop.js
index 1c8671e5cce..573754ae6de 100644
--- a/src/facilities/toyShop/toyShop.js
+++ b/src/facilities/toyShop/toyShop.js
@@ -98,13 +98,11 @@ App.UI.toyShop = function() {
 			return el;
 
 			function descLocked() {
-				// Title
 				return App.UI.DOM.makeElement("div", `Description has already been selected for this model: "${buttPlugName}"`);
 			}
 		}
 
 		function desc() {
-			// Describe
 			const value = App.UI.DOM.makeElement("div", `Enter value here as it will appear in descriptions: a standard "butt plug" `);
 			value.append(App.UI.DOM.makeTextBox(
 				buttPlugName,
@@ -118,7 +116,6 @@ App.UI.toyShop = function() {
 		}
 
 		function title() {
-			// Title
 			const title = App.UI.DOM.makeElement("div", `Enter title as it will appear in lists of choices; "Butt plug" `);
 			title.append(App.UI.DOM.makeTextBox(
 				buttPlugData.name,
@@ -131,7 +128,6 @@ App.UI.toyShop = function() {
 		}
 
 		function width() {
-			// Width
 			const widthOptions = new Map([
 				["standard", 1],
 				["large", 2],
@@ -164,7 +160,6 @@ App.UI.toyShop = function() {
 		}
 
 		function length() {
-			// Length
 			const lengthOptions = new Map([
 				["standard", 1],
 				["long", 2],
-- 
GitLab