diff --git a/code/modules/ninja/martial_art.dm b/code/modules/ninja/martial_art.dm
index 1ea05b1073e..a17b2c00952 100644
--- a/code/modules/ninja/martial_art.dm
+++ b/code/modules/ninja/martial_art.dm
@@ -45,8 +45,8 @@
/datum/martial_art/ninja_martial_art/teach(var/mob/living/carbon/human/H,var/make_temporary=0)
..()
H.middleClickOverride = new /datum/middleClickOverride/ninja_martial_art()
- to_chat(H, "You have been taugh the ways of the Creeping Widow.
\)
- Your stikes on harm intent will deal more damage.
Using middle mouse button on a nearby person while on harm intent will send them flying backwards.
\
+ to_chat(H, "You have been taught the ways of the Creeping Widow.
\)
+ Your strikes on harm intent will deal more damage.
Using middle mouse button on a nearby person while on harm intent will send them flying backwards.
\
Your grabs will instantly be aggressive while you are using this style.
Using middle mouse button while on harm intent and behind a person will put them in a silencing choke hold.
\
Using middle mouse button on a nearby person while on disarm intent will wrench their wrist, causing them to drop what they are holding."
@@ -76,7 +76,7 @@
return 0
if(has_choke_hold) // Are we already choking someone?
- to_chat(A, "You are have a target in your grip!")
+ to_chat(A, "You already have a target in your grip!")
return 0
has_choke_hold = 1
@@ -98,8 +98,8 @@
D.silent += 1
D.adjustOxyLoss(1)
else
- D.visible_message("[A] loses his grip on [D]'s neck!", \
- "[A] loses his grip on your neck!")
+ D.visible_message("[A] loses \his grip on [D]'s neck!", \
+ "[A] loses \his grip on your neck!")
has_choke_hold = 0
return 0
I++