diff --git a/src/OpenTK/Input/JoystickState.cs b/src/OpenTK/Input/JoystickState.cs
index 59b190c7..623866f7 100644
--- a/src/OpenTK/Input/JoystickState.cs
+++ b/src/OpenTK/Input/JoystickState.cs
@@ -52,14 +52,14 @@ namespace OpenTK.Input
private JoystickHatState hat3;
///
- /// Gets a value between -1.0 and 1.0 representing the current offset of the specified .
+ /// Gets a value between -1.0 and 1.0 representing the current offset of the specified axis.
///
///
- /// A value between -1.0 and 1.0 representing offset of the specified .
+ /// A value between -1.0 and 1.0 representing offset of the specified axis.
/// If the specified axis does not exist, then the return value is 0.0. Use
/// to query the number of available axes.
///
- /// The to query.
+ /// The axis to query.
public float GetAxis(int axis)
{
return GetAxisRaw(axis) * ConversionFactor;