From fc174c35aeb07c6d6c58c19dc6654d67df9d423c Mon Sep 17 00:00:00 2001 From: cosmonaut <evan@moonside.games> Date: Mon, 13 Nov 2023 11:10:11 -0800 Subject: [PATCH] tweak comment --- src/Input/Input.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Input/Input.cs b/src/Input/Input.cs index dcc25da..4700d2c 100644 --- a/src/Input/Input.cs +++ b/src/Input/Input.cs @@ -38,7 +38,7 @@ namespace MoonWorks.Input public delegate void OnGamepadConnectedFunc(int slot); /// <summary> - /// Called when a game pad has been connected. + /// Called when a gamepad has been connected. /// </summary> /// <param name="slot">The slot where the connection occurred.</param> public OnGamepadConnectedFunc OnGamepadConnected; @@ -46,7 +46,7 @@ namespace MoonWorks.Input public delegate void OnGamepadDisconnectedFunc(int slot); /// <summary> - /// Called when a game pad has been disconnected. + /// Called when a gamepad has been disconnected. /// </summary> /// <param name="slot">The slot where the disconnection occurred.</param> public OnGamepadDisconnectedFunc OnGamepadDisconnected;