From daba6cd80585ccc384ab4d4d87fcde0d303b5071 Mon Sep 17 00:00:00 2001 From: Diego Waxemberg Date: Sun, 29 Dec 2013 13:16:19 -0500 Subject: [PATCH] fixed javadoc typo --- src/com/limelight/input/KeyboardTranslator.java | 2 +- src/com/limelight/input/gamepad/GamepadComponent.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/limelight/input/KeyboardTranslator.java b/src/com/limelight/input/KeyboardTranslator.java index 36f7853..23a40ed 100644 --- a/src/com/limelight/input/KeyboardTranslator.java +++ b/src/com/limelight/input/KeyboardTranslator.java @@ -27,7 +27,7 @@ public class KeyboardTranslator extends KeycodeTranslator { /** * Translates the given keycode and returns the GFE keycode * @param keycode the code to be translated - * @returns a GFE keycode for the given keycode + * @return a GFE keycode for the given keycode */ @Override public short translate(int keycode) { diff --git a/src/com/limelight/input/gamepad/GamepadComponent.java b/src/com/limelight/input/gamepad/GamepadComponent.java index 97861f0..4b47e71 100644 --- a/src/com/limelight/input/gamepad/GamepadComponent.java +++ b/src/com/limelight/input/gamepad/GamepadComponent.java @@ -29,7 +29,7 @@ public enum GamepadComponent implements Serializable { /** * Gets the label for this gamepad component - * @returns a label with the name of this component as the text + * @return a label with the name of this component as the text */ public JLabel getLabel() { return label; @@ -37,7 +37,7 @@ public enum GamepadComponent implements Serializable { /** * Checks if this component is analog or digital - * @returns whether this component is analog + * @return whether this component is analog */ public boolean isAnalog() { return analog;