diff --git a/js/medicine/surgery/exotic/treatment.js b/js/medicine/surgery/exotic/treatment.js
index 31fd7b00ce1fd831d1acbb3c15ea61fedcd6de18..c0ed5c9ae41c02d3e27f2b403a1462be7477af70 100644
--- a/js/medicine/surgery/exotic/treatment.js
+++ b/js/medicine/surgery/exotic/treatment.js
@@ -148,7 +148,7 @@ App.Medicine.Surgery.Procedures.RemoveGene = class extends App.Medicine.Surgery.
 App.Medicine.Surgery.Procedures.AddGene = class extends App.Medicine.Surgery.Procedure {
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * @param {string} gene
+	 * @param {keyof FC.GeneticQuirks} gene
 	 * @param {boolean} [activation=false] Activation or inducement
 	 */
 	constructor(slave, gene, activation = false) {
diff --git a/src/endWeek/player/prDiet.js b/src/endWeek/player/prDiet.js
index b597b57253c29152e473e68ce42078396320b4b1..dc428a71812cfb189e5e261c51848c9af14545b3 100644
--- a/src/endWeek/player/prDiet.js
+++ b/src/endWeek/player/prDiet.js
@@ -76,7 +76,7 @@ App.EndWeek.Player.diet = function(PC = V.PC) {
 				r.push(`You stick to an unusual diet full of exotic foods and drinks, both rumored and proven, to boost your sexual energy.`);
 				// This should increase .need
 				if (PC.dick.isBetween(0, 3) && random(1, 100) > 95) {
-					r.push(`You feel like you're a bit biggger down there. A quick measuring confirms <span class="change positive">your dick has gotten fatter.</span>`);
+					r.push(`You feel like you're a bit bigger down there. A quick measuring confirms <span class="change positive">your dick has gotten fatter.</span>`);
 					PC.dick += 1;
 				}
 				if ((PC.geneMods.NCS === 0 && PC.balls.isBetween(0, 6) && random(1, 100) > 95) || (PC.geneMods.NCS === 1 && PC.balls.isBetween(0, 3) && random(1, 100) > 99)) {
diff --git a/src/gui/Encyclopedia/encyclopediaBeingInCharge.js b/src/gui/Encyclopedia/encyclopediaBeingInCharge.js
index 78a480cbcbacc58368f54d999a0afd55f037f914..c78f025db0a4b1468c1e6097b35037f24b0d878f 100644
--- a/src/gui/Encyclopedia/encyclopediaBeingInCharge.js
+++ b/src/gui/Encyclopedia/encyclopediaBeingInCharge.js
@@ -272,9 +272,9 @@ App.Encyclopedia.addArticle("PC Skills", function() {
 App.Encyclopedia.addArticle("Drug grades and you", function() {
 	const f = new DocumentFragment();
 	App.Events.addNode(f, ["There exist a trio of important differences between consumer-grade drugs made for citizens and slave-grade drugs reserved for chattel:"], "div");
-	App.Events.addNode(f, [`${App.UI.DOM.makeElement("span", "Health", ["strong"])}: Consumer drugs generally lack the side-effects associated with long term slave-grade drug use. It is also far more difficult to accidentally ruin your body with their use.`], "div");
-	App.Events.addNode(f, [`${App.UI.DOM.makeElement("span", "Strength", ["strong"])}: Overall, consumer drugs are weaker by comparison as a trade off for the improved health benefits. This does not mean they are necessarily worse, however; they are slower, but more consistent and able to confer their benefits past the point that slave-grade injections would cease to be reasonable.`], "div");
-	App.Events.addNode(f, [`${App.UI.DOM.makeElement("span", "Price", ["strong"])}: With most production focused on cheap slave-grade drugs, consumer drugs run at a premium and usually require a physician to prescribe them.`], "div");
+	App.Events.addNode(f, [App.UI.DOM.makeElement("span", "Health:", ["strong"]), `Consumer drugs generally lack the side-effects associated with long term slave-grade drug use. It is also far more difficult to accidentally ruin your body with their use.`], "div");
+	App.Events.addNode(f, [App.UI.DOM.makeElement("span", "Strength:", ["strong"]), `Overall, consumer drugs are weaker by comparison as a trade off for the improved health benefits. This does not mean they are necessarily worse, however; they are slower, but more consistent and able to confer their benefits past the point that slave-grade injections would cease to be reasonable.`], "div");
+	App.Events.addNode(f, [App.UI.DOM.makeElement("span", "Price:", ["strong"]), `With most production focused on cheap slave-grade drugs, consumer drugs run at a premium and usually require a physician to prescribe them.`], "div");
 	return f;
 }, "beingInCharge");