Fix typo in input_examples.rst
@@ -203,7 +203,7 @@ the :kbd:`T`:
{
if (inputEvent is InputEventKey keyEvent && keyEvent.Pressed)
- if ((Keylist)keyEvent.Keycode == KeyList.T)
+ if ((KeyList)keyEvent.Keycode == KeyList.T)
GD.Print("T was pressed");
}