aboutsummaryrefslogtreecommitdiff
path: root/LUFA
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-11-29 11:31:00 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-11-29 11:31:00 +0000
commit6643ad546fa2ff9423a26b2197b413db6757a2fb (patch)
tree3e7b666f5d0310e884636d495c4f98afcfaf7328 /LUFA
parentbb617940b75b02f4e03ba485b955d79564d8a8cd (diff)
Fix typo in the Joystick board driver documentation example code.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1999 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA')
-rw-r--r--LUFA/Drivers/Board/Joystick.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/Board/Joystick.h b/LUFA/Drivers/Board/Joystick.h
index 0d915769..afbe97d8 100644
--- a/LUFA/Drivers/Board/Joystick.h
+++ b/LUFA/Drivers/Board/Joystick.h
@@ -83,7 +83,7 @@
* if (JoystickMovement & (JOY_LEFT | JOY_RIGHT))
* printf("%s ", (JoystickMovement & JOY_LEFT) ? "Left" : "Right");
*
- * if (JoystickMovement & JOY_PRESSED)
+ * if (JoystickMovement & JOY_PRESS)
* printf("Pressed");
* \endcode
*