diff --git a/src/java/org/lwjgl/input/GamePad.java b/src/java/org/lwjgl/input/GamePad.java index b99400f0..10469eb4 100644 --- a/src/java/org/lwjgl/input/GamePad.java +++ b/src/java/org/lwjgl/input/GamePad.java @@ -116,7 +116,7 @@ public class GamePad { * "Create" the gamepad. The display must first have been created. The * reason for this is so the gamepad has a window to "focus" in. * - * @throw Exception if the gamepad could not be created for any reason + * @throws Exception if the gamepad could not be created for any reason */ public static void create() throws Exception { if (created) diff --git a/src/java/org/lwjgl/input/Joystick.java b/src/java/org/lwjgl/input/Joystick.java index 23d8f72a..285c8832 100644 --- a/src/java/org/lwjgl/input/Joystick.java +++ b/src/java/org/lwjgl/input/Joystick.java @@ -92,7 +92,7 @@ public class Joystick { /** * "Create" the joystick. The display must first have been created. - * @throw Exception if the joystick could not be created for any reason + * @throws Exception if the joystick could not be created for any reason */ public static void create() throws Exception { if (created) diff --git a/src/java/org/lwjgl/input/Keyboard.java b/src/java/org/lwjgl/input/Keyboard.java index 101da291..8a2a6e9e 100644 --- a/src/java/org/lwjgl/input/Keyboard.java +++ b/src/java/org/lwjgl/input/Keyboard.java @@ -224,7 +224,7 @@ public class Keyboard { * "Create" the keyboard. The display must first have been created. The * reason for this is so the keyboard has a window to "focus" in. * - * @throw Exception if the keyboard could not be created for any reason + * @throws Exception if the keyboard could not be created for any reason */ public static void create() throws Exception { if (created) diff --git a/src/java/org/lwjgl/input/Mouse.java b/src/java/org/lwjgl/input/Mouse.java index 1fa25302..e566eca5 100644 --- a/src/java/org/lwjgl/input/Mouse.java +++ b/src/java/org/lwjgl/input/Mouse.java @@ -90,7 +90,7 @@ public class Mouse { /** * "Create" the mouse. The display must first have been created. - * @throw Exception if the mouse could not be created for any reason + * @throws Exception if the mouse could not be created for any reason */ public static void create() throws Exception { if (created)