diff --git a/src/pregmod/FCTV/FCTV.js b/src/pregmod/FCTV/FCTV.js
index e89935c3a8b8fd862cb3a884830cfaf891688fc9..42c5ed635112e2ae1bbd9efa81884e7a70679dce 100644
--- a/src/pregmod/FCTV/FCTV.js
+++ b/src/pregmod/FCTV/FCTV.js
@@ -219,16 +219,16 @@ globalThis.FCTV = (function() {
 
 		p = document.createElement("p");
 
-		p.append(`Tired after a long day, you tell`);
+		p.append(`Tired after a long day, you tell `);
 		if (V.Concubine) {
 			p.append(`your concubine: `);
 			App.UI.DOM.appendNewElement("span", p, V.Concubine.slaveName, "pink");
 		} else {
 			p.append(V.assistant.name);
 		}
-		p.append(` to turn on the TV and`);
+		p.append(` to turn on the TV and `);
 		if (!usedRemote) {
-			p.append(` set FCTV to find a random show.Your larger - than - life screen flashes on, and is soon playing content from the popular streaming service. `);
+			p.append(`set FCTV to find a random show. Your larger-than-life screen flashes on, and is soon playing content from the popular streaming service. `);
 			if (V.cheatMode > 0 || V.debugMode > 0 || V.FCTV.remote) {
 				p.append(
 					App.UI.DOM.link(
@@ -263,9 +263,9 @@ globalThis.FCTV = (function() {
 				break;
 			}
 		} else if (usedRemote && (V.cheatMode > 0 || V.debugMode > 0 || V.FCTV.remote)) {
-			p.append(`bring you the remote so you can choose whatever show you find interesting.`);
+			p.append(`bring you the remote so you can choose whatever show you find interesting. `);
 			if (V.FCTV.channel.selected === V.FCTV.channel.last) {
-				App.UI.DOM.appendNewElement("div", p, `You tuned into this channel last week, you may want choose something else.`);
+				App.UI.DOM.appendNewElement("div", p, `You tuned into this channel last week, you may want to choose something else.`);
 			}
 			if (seeAll) {
 				div2 = document.createElement("div");