Oops - fix mixed "initialize" and "initialise" - opt for American spelling due to its wide use in technical standards.

This commit is contained in:
Dean Camera 2010-07-30 10:58:16 +00:00
parent 0f45b9c8e0
commit 612df774d9
11 changed files with 13 additions and 13 deletions

View file

@ -1723,7 +1723,7 @@ FRESULT chk_mounted ( /* FR_OK(0): successful, !=0: any error occurred */
if (fmt == 3) return FR_DISK_ERR;
if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */
/* Following code initialises the file system object */
/* Following code initializes the file system object */
if (LD_WORD(fs->win+BPB_BytsPerSec) != SS(fs)) /* (BPB_BytsPerSec must be equal to the physical sector size) */
return FR_NO_FILESYSTEM;

View file

@ -1723,7 +1723,7 @@ FRESULT chk_mounted ( /* FR_OK(0): successful, !=0: any error occurred */
if (fmt == 3) return FR_DISK_ERR;
if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */
/* Following code initialises the file system object */
/* Following code initializes the file system object */
if (LD_WORD(fs->win+BPB_BytsPerSec) != SS(fs)) /* (BPB_BytsPerSec must be equal to the physical sector size) */
return FR_NO_FILESYSTEM;

View file

@ -232,7 +232,7 @@ typedef struct uip_eth_addr uip_lladdr_t;
/**
* uIP initialization function.
*
* This function should be called at boot up to initialise the uIP
* This function should be called at boot up to initialize the uIP
* TCP/IP stack.
*/
void uip_init(void);