diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js
index 8ed0b7e26beb25f5924777004af80c95bfe56ae4..3055c39f93fe2e15c2e5cad9191100c892f66b29 100644
--- a/src/js/descriptionWidgets.js
+++ b/src/js/descriptionWidgets.js
@@ -1020,11 +1020,11 @@ App.Desc.limbs = function(slave) {
    	*/
 
 	if (isAmputee(slave)) {
-		r += `${He} is a quadruple amputee and has not been equipped with prosthetics.`;
+		r += `${He} is a quadruple amputee and has not been equipped with prosthetics`;
 	} else if (getLeftArmID(slave) === getRightArmID(slave) &&
 			getLeftArmID(slave) === getLeftLegID(slave) &&
 			getLeftArmID(slave) === getRightLegID(slave)) {
-		r += `${He} has ` + idToDescription(getLeftArmID(slave)) + ` limbs.`;
+		r += `${He} has ` + idToDescription(getLeftArmID(slave)) + ` limbs`;
 	} else {
 		if (!hasAnyArms(slave)) {
 			r += `Both of ${his} arms have been amputated`;