{.Extension = "pdf", .MIMEType = "application/pdf"},
        };
 
-/** FATFs structure to hold the internal state of the FAT driver for the dataflash contents. */
+/** FATFs structure to hold the internal state of the FAT driver for the Dataflash contents. */
 FATFS DiskFATState;
 
 
        /* Listen on port 80 for HTTP connections from hosts */
        uip_listen(HTONS(HTTP_SERVER_PORT));
        
-       /* Mount the dataflash disk via FatFS */
+       /* Mount the Dataflash disk via FatFS */
        f_mount(0, &DiskFATState);
 }