From 0f45b9c8e076483cd546d0bc9c606b73455295c6 Mon Sep 17 00:00:00 2001
From: Dean Camera <dean@fourwalledcubicle.com>
Date: Fri, 30 Jul 2010 09:48:35 +0000
Subject: More spell checking of all source files -- correct missed errors,
 switch to EN-GB spelling dictionary.

---
 Projects/TempDataLogger/Lib/FATFs/ff.c                 | 18 +++++++++---------
 Projects/TempDataLogger/Lib/FATFs/ff.h                 |  4 ++--
 .../TempLogHostApp/DataLoggerSettings.cs               |  4 ++--
 Projects/TempDataLogger/TemperatureDataLogger.txt      |  2 +-
 4 files changed, 14 insertions(+), 14 deletions(-)

(limited to 'Projects/TempDataLogger')

diff --git a/Projects/TempDataLogger/Lib/FATFs/ff.c b/Projects/TempDataLogger/Lib/FATFs/ff.c
index 6b393747f..0aedb6bc4 100644
--- a/Projects/TempDataLogger/Lib/FATFs/ff.c
+++ b/Projects/TempDataLogger/Lib/FATFs/ff.c
@@ -45,7 +45,7 @@
 /                   Fixed f_mkdir() on FAT32 creates incorrect directory.
 / Feb 03,'08 R0.05a Added f_truncate() and f_utime().
 /                   Fixed off by one error at FAT sub-type determination.
-/                   Fixed btr in f_read() can be mistruncated.
+/                   Fixed btr in f_read() can be mis-truncated.
 /                   Fixed cached sector is not flushed when create and close
 /                   without write.
 /
@@ -495,7 +495,7 @@ DWORD get_fat (	/* 0xFFFFFFFF:Disk error, 1:Internal error, Else:Cluster status
 	BYTE *p;
 
 
-	if (clst < 2 || clst >= fs->n_fatent)	/* Chack range */
+	if (clst < 2 || clst >= fs->n_fatent)	/* Check range */
 		return 1;
 
 	switch (fs->fs_type) {
@@ -1321,7 +1321,7 @@ FRESULT create_name (
 		if (w != ' ' && w != '.') break;
 		di--;
 	}
-	if (!di) return FR_INVALID_NAME;	/* Reject nul string */
+	if (!di) return FR_INVALID_NAME;	/* Reject null string */
 
 	lfn[di] = 0;						/* LFN is created */
 
@@ -1458,7 +1458,7 @@ FRESULT create_name (
 	*path = &p[si];						/* Return pointer to the next segment */
 	c = (c <= ' ') ? NS_LAST : 0;		/* Set last segment flag if end of path */
 
-	if (!i) return FR_INVALID_NAME;		/* Reject nul string */
+	if (!i) return FR_INVALID_NAME;		/* Reject null string */
 	if (sfn[0] == 0xE5) sfn[0] = 0x05;	/* When first char collides with 0xE5, replace it with 0x05 */
 
 	if (ni == 8) b <<= 2;
@@ -1582,7 +1582,7 @@ FRESULT follow_path (	/* FR_OK(0): successful, !=0: error code */
 	dj->sclust = 0;						/* Start from the root dir */
 #endif
 
-	if ((UINT)*path < ' ') {			/* Nul path means the start directory itself */
+	if ((UINT)*path < ' ') {			/* Null path means the start directory itself */
 		res = dir_sdi(dj, 0);
 		dj->dir = 0;
 
@@ -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 initializes the file system object */
+	/* Following code initialises 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;
@@ -2527,7 +2527,7 @@ FRESULT f_lseek (
 
 #if _FS_MINIMIZE <= 1
 /*-----------------------------------------------------------------------*/
-/* Create a Directroy Object                                             */
+/* Create a Directory Object                                             */
 /*-----------------------------------------------------------------------*/
 
 FRESULT f_opendir (
@@ -2878,7 +2878,7 @@ FRESULT f_mkdir (
 					mem_set(dir, 0, SS(dj.fs));
 				}
 			}
-			if (res == FR_OK) res = dir_register(&dj);	/* Register the object to the directoy */
+			if (res == FR_OK) res = dir_register(&dj);	/* Register the object to the directory */
 			if (res != FR_OK) {
 				remove_chain(dj.fs, dcl);				/* Could not register, remove cluster chain */
 			} else {
@@ -3177,7 +3177,7 @@ FRESULT f_mkfs (
 	if (au == 0) au = 1;
 	if (au > 128) au = 128;
 
-	/* Pre-compute number of clusters and FAT syb-type */
+	/* Pre-compute number of clusters and FAT sub-type */
 	n_clst = n_vol / au;
 	fmt = FS_FAT12;
 	if (n_clst >= MIN_FAT16) fmt = FS_FAT16;
diff --git a/Projects/TempDataLogger/Lib/FATFs/ff.h b/Projects/TempDataLogger/Lib/FATFs/ff.h
index 4da8dfdbe..19b6a15b6 100644
--- a/Projects/TempDataLogger/Lib/FATFs/ff.h
+++ b/Projects/TempDataLogger/Lib/FATFs/ff.h
@@ -334,7 +334,7 @@ typedef struct {
 	DWORD	dsect;			/* Current data sector */
 #if !_FS_READONLY
 	DWORD	dir_sect;		/* Sector containing the directory entry */
-	BYTE*	dir_ptr;		/* Ponter to the directory entry in the window */
+	BYTE*	dir_ptr;		/* Pointer to the directory entry in the window */
 #endif
 #if _USE_FASTSEEK
 	DWORD*	cltbl;			/* Pointer to the cluster link map table */
@@ -429,7 +429,7 @@ FRESULT f_sync (FIL*);								/* Flush cached data of a writing file */
 FRESULT f_unlink (const TCHAR*);					/* Delete an existing file or directory */
 FRESULT	f_mkdir (const TCHAR*);						/* Create a new directory */
 FRESULT f_chmod (const TCHAR*, BYTE, BYTE);			/* Change attribute of the file/dir */
-FRESULT f_utime (const TCHAR*, const FILINFO*);		/* Change timestamp of the file/dir */
+FRESULT f_utime (const TCHAR*, const FILINFO*);		/* Change time-stamp of the file/dir */
 FRESULT f_rename (const TCHAR*, const TCHAR*);		/* Rename/Move a file or directory */
 #endif
 #if _USE_FORWARD
diff --git a/Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs b/Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs
index 0168fb8cf..52a2110db 100644
--- a/Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs
+++ b/Projects/TempDataLogger/TempLogHostApp/DataLoggerSettings.cs
@@ -101,7 +101,7 @@ namespace Project1HostApp
             try
             {
                 ConnectionHandle.Write(0x00, DeviceReport.ToReport());
-                MessageBox.Show("Device parameters updated sucessfully.");
+                MessageBox.Show("Device parameters updated successfully.");
             }
             catch (Exception ex)
             {
@@ -156,7 +156,7 @@ namespace Project1HostApp
                     nudLogInterval.Value = nudLogInterval.Minimum;
                 }
 
-                MessageBox.Show("Device parameters retrieved sucessfully.");
+                MessageBox.Show("Device parameters retrieved successfully.");
             }
             catch (Exception ex)
             {
diff --git a/Projects/TempDataLogger/TemperatureDataLogger.txt b/Projects/TempDataLogger/TemperatureDataLogger.txt
index a76748e38..f15733850 100644
--- a/Projects/TempDataLogger/TemperatureDataLogger.txt
+++ b/Projects/TempDataLogger/TemperatureDataLogger.txt
@@ -67,7 +67,7 @@
  *
  *  \section SSec_Options Project Options
  *
- *  The following defines can be found in this demo, which can control the demo behavior when defined, or changed in value.
+ *  The following defines can be found in this demo, which can control the demo behaviour when defined, or changed in value.
  *
  *  <table>
  *   <tr>
-- 
cgit v1.2.3