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);