Fixed documentation comment

This commit is contained in:
Stefanos A. 2013-09-30 13:48:12 +02:00
parent 2d19edf3fe
commit fc8b3810e9

View file

@ -67,8 +67,8 @@ namespace OpenTK.Input
/// Gets a <see cref="System.Boolean"/> indicating whether the specified /// Gets a <see cref="System.Boolean"/> indicating whether the specified
/// <see cref="OpenTK.Input.Key"/> is pressed. /// <see cref="OpenTK.Input.Key"/> is pressed.
/// </summary> /// </summary>
/// <param name="key">The <see cref="OpenTK.Input.Key"/> to check.</param> /// <param name="code">The scancode to check.</param>
/// <returns>True if key is pressed; false otherwise.</returns> /// <returns>True if code is pressed; false otherwise.</returns>
public bool this[short code] public bool this[short code]
{ {
get { return IsKeyDown(code); } get { return IsKeyDown(code); }