fixed javadoc typo

This commit is contained in:
Diego Waxemberg
2013-12-29 13:16:19 -05:00
parent 248864a604
commit daba6cd805
2 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ public class KeyboardTranslator extends KeycodeTranslator {
/** /**
* Translates the given keycode and returns the GFE keycode * Translates the given keycode and returns the GFE keycode
* @param keycode the code to be translated * @param keycode the code to be translated
* @returns a GFE keycode for the given keycode * @return a GFE keycode for the given keycode
*/ */
@Override @Override
public short translate(int keycode) { public short translate(int keycode) {

View File

@@ -29,7 +29,7 @@ public enum GamepadComponent implements Serializable {
/** /**
* Gets the label for this gamepad component * 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() { public JLabel getLabel() {
return label; return label;
@@ -37,7 +37,7 @@ public enum GamepadComponent implements Serializable {
/** /**
* Checks if this component is analog or digital * Checks if this component is analog or digital
* @returns whether this component is analog * @return whether this component is analog
*/ */
public boolean isAnalog() { public boolean isAnalog() {
return analog; return analog;