aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-09 13:15:28 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-09 13:15:28 +0000
commitd6edfe35c8a9490407e4a5e34f8e5108c6a260a3 (patch)
tree50a869497c7eab5d031af4a74ab3192dac5c9d5b /Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c
parentc647c2763980b374da1c4314c752295d72228d4c (diff)
downloadlufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.tar.gz
lufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.tar.bz2
lufa-d6edfe35c8a9490407e4a5e34f8e5108c6a260a3.zip
Spell check all source code variables, comments and strings.
Diffstat (limited to 'Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c')
-rw-r--r--Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c b/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c
index a6256bfd5..1afc87d46 100644
--- a/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c
+++ b/Demos/Host/LowLevel/MassStorageHost/MassStorageHost.c
@@ -249,7 +249,7 @@ void MassStorage_Task(void)
if (!(ErrorCode))
break;
- /* If an error othe than a logical command failure (indicating device busy) returned, abort */
+ /* If an error other than a logical command failure (indicating device busy) returned, abort */
if (ErrorCode != MASS_STORE_SCSI_COMMAND_FAILED)
{
ShowDiskReadError(PSTR("Test Unit Ready"), ErrorCode);
@@ -276,7 +276,7 @@ void MassStorage_Task(void)
/* Display the disk capacity in blocks * block size bytes */
printf_P(PSTR("%lu blocks of %lu bytes.\r\n"), DiskCapacity.Blocks, DiskCapacity.BlockSize);
- /* Create a new buffer capabable of holding a single block from the device */
+ /* Create a new buffer capable of holding a single block from the device */
uint8_t BlockBuffer[DiskCapacity.BlockSize];
/* Read in the first 512 byte block from the device */