diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-04-01 13:53:58 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-04-01 13:53:58 +0000 |
commit | 6933f2e1a543b066ebe734bd126a7ff2f1c2777f (patch) | |
tree | a8fd03c986accab9fa79e43d835e047fb5b0e254 /Demos/Device/AudioOutput/AudioOutput.c | |
parent | fb3fcb968ea70f8b5c6d8f7edde65745e49628f2 (diff) | |
download | lufa-6933f2e1a543b066ebe734bd126a7ff2f1c2777f.tar.gz lufa-6933f2e1a543b066ebe734bd126a7ff2f1c2777f.tar.bz2 lufa-6933f2e1a543b066ebe734bd126a7ff2f1c2777f.zip |
All comments in the library, bootloaders, demos and projects have now been spell-checked and spelling mistakes/typos corrected.
Diffstat (limited to 'Demos/Device/AudioOutput/AudioOutput.c')
-rw-r--r-- | Demos/Device/AudioOutput/AudioOutput.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/AudioOutput/AudioOutput.c b/Demos/Device/AudioOutput/AudioOutput.c index 0f390f001..855edf68c 100644 --- a/Demos/Device/AudioOutput/AudioOutput.c +++ b/Demos/Device/AudioOutput/AudioOutput.c @@ -236,7 +236,7 @@ TASK(USB_Audio_Task) /* Clear the sample reload timer */
TIFR0 |= (1 << OCF0A);
- /* Retreive the signed 16-bit left and right audio samples */
+ /* Retrieve the signed 16-bit left and right audio samples */
int16_t LeftSample_16Bit = (int16_t)Endpoint_Read_Word_LE();
int16_t RightSample_16Bit = (int16_t)Endpoint_Read_Word_LE();
|