diff --git a/src/endWeek/reports/schoolroomReport.js b/src/endWeek/reports/schoolroomReport.js
index 54ef0477317757782c5be589f93003b8db9bc140..77aff4cc908b7ec9092fdf10d54c8b70b4453302 100644
--- a/src/endWeek/reports/schoolroomReport.js
+++ b/src/endWeek/reports/schoolroomReport.js
@@ -249,7 +249,7 @@ App.EndWeek.schoolroomReport = function() {
 			slaveEntry.append(App.SlaveAssignment.saSlaveIntro(slave, `is studying in ${V.schoolroomName}${leaderTraining}.`));
 			if (tutorForSlave(slave) && slave.skill[uncapFirstChar(tutorForSlave(slave))] < Constant.MASTERED_XP) {
 				const trainingPercentage = (slave.skill[uncapFirstChar(tutorForSlave(slave))] / Constant.MASTERED_XP) * 100;
-				slaveEntry.append(` ${He} is currently ${trainingPercentage}% through training and should be finished in approximately ${numberWithPluralOne(Math.round(Constant.MASTERED_XP / trainingPercentage), "week")}.`);
+				slaveEntry.append(` ${He} is currently roughly ${Math.round(trainingPercentage)}% through training and should be finished in approximately ${numberWithPluralOne(Math.round(Constant.MASTERED_XP / trainingPercentage), "week")}.`);
 			}
 
 			App.Events.addNode(slaveEntry, [He, App.SlaveAssignment.takeClasses(slave)], "div", ["indent"]);