diff --git a/src/facilities/toyShop/toyShop.js b/src/facilities/toyShop/toyShop.js
index 1c8671e5cce262d5630bd33a8f87ddad78686809..573754ae6de9eb41c02a00f196ae7f4f7b8d7de2 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],