diff --git a/code/modules/surgery/limb augmentation.dm b/code/modules/surgery/limb augmentation.dm
index e18431e9d8a..ee1293db5c5 100644
--- a/code/modules/surgery/limb augmentation.dm
+++ b/code/modules/surgery/limb augmentation.dm
@@ -98,7 +98,7 @@
user << "You can't fit the chainsaw in while [target]'s hands are full!"
return 0
else
- user.visible_message("[user] finshes installing the chainsaw!", "You install the chainsaw.")
+ user.visible_message("[user] finishes installing the chainsaw!", "You install the chainsaw.")
user.unEquip(tool)
qdel(tool)
var/obj/item/weapon/mounted_chainsaw/sawarms = new(target)
@@ -134,5 +134,5 @@
for(var/obj/item/weapon/mounted_chainsaw/V in hands)
qdel(V)
new /obj/item/weapon/twohanded/required/chainsaw(get_turf(target))
- user.visible_message("[user] carefully saws [target]'s arms free of the chainsaw.", "You remove the chainsaw.")
+ user.visible_message("[user] carefully saws [target]'s arm free of the chainsaw.", "You remove the chainsaw.")
return 1