diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js
index 130bdbbb400698231c4403fa06046cbe7331f178..ebcb2e6fe07d217059f1b4930541811cff9e91c7 100644
--- a/js/003-data/policiesData.js
+++ b/js/003-data/policiesData.js
@@ -16,11 +16,11 @@
  * @property {string} [activatedNote] Note that appears if policy is activated. Please note that unlike the other "activated" categories, "note" is only displayed on deactivated policies. There is no fallback.
  */
 /**
- * @typedef {object<string, PolicySelector[]>} PolicySelectorGroup
+ * @typedef {Object.<string, PolicySelector[]>} PolicySelectorGroup
  * Key names represent a piece of the variable. "policies.SMR.basicSMR" will be checked against "V.policies.SMR.basicSMR". "arcologies[0].FSEgyptianRevivalistIncestPolicy" will be checked against "V.arcologies[0].FSEgyptianRevivalistIncestPolicy".
  */
 
-/** @type {object<string, PolicySelectorGroup>} */
+/** @type {Object.<string, PolicySelectorGroup>} */
 App.Data.Policies.Selection = {
 	SMR: {
 		"policies.SMR.basicSMR": [
diff --git a/src/npc/surgery/surgery.js b/src/npc/surgery/surgery.js
index cfb05caf0ff60361193086aa80f64dfaac8953fe..bc8e5cf6b5ac5ec83c312e5fcadb6c2e77b7db3d 100644
--- a/src/npc/surgery/surgery.js
+++ b/src/npc/surgery/surgery.js
@@ -451,7 +451,7 @@ App.Medicine.Surgery.sizingProcedures = function() {
 		const largeImplantsAvailable = thisArcology.FSTransformationFetishistResearch === 1;
 		const advancedSurgeryAvailable = V.ImplantProductionUpgrade === 1;
 		const pronouns = getPronouns(slave);
-		const {he, His} = pronouns;
+		const {His} = pronouns;
 
 		const types = App.Medicine.Keys.Surgery.Target.butt; // shortcuts
 		const helper = new App.Medicine.Surgery.ListHelpers(slave, "butt", types, pronouns, false);
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 5e8fa2afed3c4f8dc50407e1f690cc3b2bb40dac..575104a7beb1973f8bee378a022eed4cb6fc377a 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -151,22 +151,6 @@ $args[1]: Fetish.
 
 <</widget>>
 
-/%
- Call as <<SlaveIDSort [slaveIDs]>>
- $args[0]: array to sort
-%/
-<<widget "SlaveIDSort">>
-	<<run SlaveSort.IDs($args[0])>>
-<</widget>>
-
-/%
- Call as <<SlaveIndexSort [slaveIndxs]>>
- $args[0]: array to sort
-%/
-<<widget "SlaveIndexSort">>
-	<<run SlaveSort.indices($args[0])>>
-<</widget>>
-
 /* Called as <<FSChangeDecoration "FSName" "clothesBoughtFSClothes">>, will generate description of current decoration level and a link to increase it if applicable, quotes are needed to pass FSName as reference - DO NOT INCLUDE IT AS PROPERTY OF $arcologies[0]! */
 <<widget "FSChangeDecoration">>
 <<set _FS = $args[0]>>