diff --git a/src/Mods/SpecialForce/SpecialForce.js b/src/Mods/SpecialForce/SpecialForce.js
index 7c5638805875142d7eb349246cc6ea75d28e7ac4..de04d0ebb50787169d9e0d3b0eecbea9d80f52a7 100644
--- a/src/Mods/SpecialForce/SpecialForce.js
+++ b/src/Mods/SpecialForce/SpecialForce.js
@@ -924,7 +924,7 @@ App.SF.fsIntegration = (function() {
 				InputText0 += fsIncrease > 0 ? ` ` : ` (`;
 			}
 			InputText0 += `<span class='red'>${cashFormat(cost)},</span> tension:`;
-			InputText0 += `<span class=${fsIncrease > 0 ? `'red'>+` : `'green'>-`}`;
+			InputText0 += `${fsIncrease > 0 ? "<span class='red'>+" : "<span class='green'>-"}`;
 			linkText += InputText0 + `15%</span>)`;
 			return linkText;
 		}
diff --git a/src/endWeek/economics/arcmgmt.js b/src/endWeek/economics/arcmgmt.js
index 28cc4ab25d6ad5346aef765432a48920a45ac2db..d56270b595906259766d0d5824b96261778f6375 100644
--- a/src/endWeek/economics/arcmgmt.js
+++ b/src/endWeek/economics/arcmgmt.js
@@ -58,10 +58,10 @@ globalThis.arcmgmt = function() {
 	let	_slaveDemandU = 1; /* Changes to upperClass slave demand */
 	let	_slaveDemandT = 1; /* Changes to topClass slave demand */
 	let	_expirationFS = 0.005; /* Changes to likelihood of slave death */
-	let _expirationLC = 0.003; /* Changes to likelyhood of lowerClass death */
-	let _expirationMC = 0.002; /* Changes to likelyhood of middleClass death */
-	let _expirationUC = 0.001; /* Changes to likelyhood of upperClass death */
-	let _expirationTC = 0.001; /* Changes to likelyhood of topClass death */
+	let _expirationLC = 0.003; /* Changes to likelihood of lowerClass death */
+	let _expirationMC = 0.002; /* Changes to likelihood of middleClass death */
+	let _expirationUC = 0.001; /* Changes to likelihood of upperClass death */
+	let _expirationTC = 0.001; /* Changes to likelihood of topClass death */
 	let	_slaveProductivity = 0.8; /* Changes to slave productivity*/
 	let	_lowerClass = 0; /* Fixed amount of changes to lowerClass interest to move in*/
 	let	_lowerClassP = 1; /* Scaling changes to lowerClass interest ("stacking bonus")*/
diff --git a/src/events/scheduled/sePCBirthday.desc.js b/src/events/scheduled/sePCBirthday.desc.js
index 9bcf71e04fa76f1cf47fe4a8fc1f730719944b72..b08fe9d143fe8834df06727bcd7c942af4a300a0 100644
--- a/src/events/scheduled/sePCBirthday.desc.js
+++ b/src/events/scheduled/sePCBirthday.desc.js
@@ -202,7 +202,7 @@ App.Events.pcBirthday.Desc = (function(bday) {
 
 			html += `<p>
 				The next day, as the figures come in, you are startled by the numbers. The funds you shifted and the stocks you traded show immediate signs of paying off.
-				For the week, you see a <span class="cash inc">modest windfall from your strange mood</span>. You are ready for a year of success ahead.
+				For the week, you see a <span class="cash inc">modest windfall from your strange mood.</span> You are ready for a year of success ahead.
 			</p>`;
 
 			App.Events.pcBirthday.moneyAward();