From b3d0603ebad39355919118140659cb1d541495db Mon Sep 17 00:00:00 2001 From: MosJef Date: Fri, 24 Jun 2022 10:30:34 +1000 Subject: [PATCH] Simple English change Ball hit is correct english. _Hitted_ is nonstandard English. --- KickoffTimerPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KickoffTimerPlugin.cpp b/KickoffTimerPlugin.cpp index 3d757d4..24afc7c 100644 --- a/KickoffTimerPlugin.cpp +++ b/KickoffTimerPlugin.cpp @@ -71,7 +71,7 @@ void KickoffTimerPlugin::onHitBall(std::string eventName) pBallHitted.color = { 0,255,0 }; } - pBallHitted.text = string("Ball hitted after ") + to_string_with_precision(timeHit, 2) + string(" seconds."); + pBallHitted.text = string("Ball hit after ") + to_string_with_precision(timeHit, 2) + string(" seconds."); lastMsg = chrono::system_clock::now(); }