diff --git a/js/003-data/policiesData.js b/js/003-data/policiesData.js
index f5da2884f8d63074f36917236f20f96c42808f6a..b2b82cd5f2334eb50eea68f07bc43a377c019faa 100644
--- a/js/003-data/policiesData.js
+++ b/js/003-data/policiesData.js
@@ -364,7 +364,7 @@ App.Data.Policies.Selection = {
 						V.targetIdealAge = 18;
 					}
 				},
-				get note() { return `Will cost >${cashFormat(1500)} weekly until the target age is reached; high reputation will accelerate adoption.`}
+				get note() { return `Will cost ${cashFormat(1500)} weekly until the target age is reached; high reputation will accelerate adoption.`}
 			}
 		],
 		"arcologies[0].FSEgyptianRevivalistIncestPolicy": [
diff --git a/src/endWeek/economics/arcmgmt.js b/src/endWeek/economics/arcmgmt.js
index 402dc2e1c42d9fe9140592a7505ab259dd97cf35..bee0102dc008097f693ddd45e512d1825f886dc7 100644
--- a/src/endWeek/economics/arcmgmt.js
+++ b/src/endWeek/economics/arcmgmt.js
@@ -1060,7 +1060,7 @@ App.EndWeek.arcManagement = function() {
 		const r = [];
 		if(V.policies.idealAge) {
 			if(V.targetIdealAge !== V.idealAge) {
-				r.push(`You spend <span class="yellow">>${cashFormat(1500)}</span> and use your personal influence to shift the percieved ideal age of sexual appeal.`);
+				r.push(`You spend <span class="yellow">${cashFormat(1500)}</span> and use your personal influence to shift the percieved ideal age of sexual appeal.`);
 				V.idealAgeAdoption += V.rep / 100;
 				if(V.idealAgeAdoption > 100) {
 					const adoptionModifier = Math.floor(V.idealAgeAdoption / 100);