Fix typo in exception

This commit is contained in:
smoogipoo 2020-04-20 13:23:27 +09:00
parent 70ef6df4fb
commit 355e682e24
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public void HandleHit(DrawableHitObject hitObject)
return;
if (!IsHittable(hitObject, hitObject.HitObject.StartTime + hitObject.Result.TimeOffset))
throw new InvalidOperationException($"A {hitObject} was hit before it become hittable!");
throw new InvalidOperationException($"A {hitObject} was hit before it became hittable!");
foreach (var obj in enumerateHitObjectsUpTo(hitObject.HitObject.StartTime))
{