Skip to content

Commit 39e057c

Browse files
committed
Fixed spelling
1 parent f49ccf0 commit 39e057c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/Tests/InputSystem/CoreTests_Actions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2188,15 +2188,15 @@ public void Actions_CanReadValueFromAction_AsButton(InputActionType actionType,
21882188
Assert.That(action.WasReleasedThisFrame(), Is.False);
21892189

21902190
// Disabling an action at this point should affect IsPressed() but should
2191-
// not affect WasPressedThisFrame() and WasReleasedThisFramme().
2191+
// not affect WasPressedThisFrame() and WasReleasedThisFrame().
21922192
action.Disable();
21932193

21942194
Assert.That(action.IsPressed(), Is.False);
21952195
Assert.That(action.WasPressedThisFrame(), Is.True);
21962196
Assert.That(action.WasReleasedThisFrame(), Is.False);
21972197

21982198
// Re-enabling it should have no effect on WasPressedThisFrame() and
2199-
// WasReleasedThisFramme() either. Also IsPressed() should remain false
2199+
// WasReleasedThisFrame() either. Also IsPressed() should remain false
22002200
// as the button may have been released and the action wouldn't see
22012201
// the update while disabled.
22022202
action.Enable();

0 commit comments

Comments
 (0)