diff --git a/Source/Engine/Input/Input.h b/Source/Engine/Input/Input.h
index a937f4f2e..dec381ca9 100644
--- a/Source/Engine/Input/Input.h
+++ b/Source/Engine/Input/Input.h
@@ -349,12 +349,14 @@ public:
/// Gets the first action configuration by name.
///
/// The name of the action config.
+ /// The first Action configuration with the name. Empty configuration if not found.
API_FUNCTION() static ActionConfig GetActionConfigByName(const StringView& name);
///
/// Gets all the action configurations by name.
///
/// The name of the action config.
+ /// The Action configurations with the name.
API_FUNCTION() static Array GetAllActionConfigsByName(const StringView& name);
///
@@ -394,12 +396,14 @@ public:
/// Gets the first axis configurations by name.
///
/// The name of the axis config.
+ /// The first Axis configuration with the name. Empty configuration if not found.
API_FUNCTION() static AxisConfig GetAxisConfigByName(const StringView& name);
///
/// Gets all the axis configurations by name.
///
/// The name of the axis config.
+ /// The axis configurations with the name.
API_FUNCTION() static Array GetAllAxisConfigsByName(const StringView& name);
///
@@ -432,7 +436,7 @@ public:
API_FUNCTION() static void SetAxisConfigByName(const StringView& name, InputAxisType inputType, const GamepadButton positiveButton, const GamepadButton negativeButton, InputGamepadIndex gamepadIndex, bool all = false);
///
- /// Sets the axis configuration accessories by name, and type..
+ /// Sets the axis configuration accessories by name, and type.
///
/// The name of the action config.
/// The type to sort by.