summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2011-08-23 04:59:11 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2011-08-23 04:59:11 +0000
commitb6cd64c7abb31c4224e72796bcaacf4c752fd717 (patch)
treedfd3bb356988f1e1ed2e006a05e2810301cefc11 /src/lib
parentadacaf4eeee85405f89ea45e60bc670fe822e777 (diff)
"English doesn't borrow from other languages. English follows other languages down dark alleys, knocks them over and goes through their pockets for loose grammar!"
Hand-checked the most popular English word misspellings and made the appropriate changes. Nearly all of the changes made were in commented areas. (no whatsnew)
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/expat/expat.h2
-rw-r--r--src/lib/expat/internal.h2
-rw-r--r--src/lib/formats/coco_dsk.c4
-rw-r--r--src/lib/formats/oric_tap.c2
-rw-r--r--src/lib/formats/td0_dsk.c2
-rw-r--r--src/lib/formats/thom_cas.c2
-rw-r--r--src/lib/formats/uef_cas.c2
7 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/expat/expat.h b/src/lib/expat/expat.h
index 3abc034f039..548535c745b 100644
--- a/src/lib/expat/expat.h
+++ b/src/lib/expat/expat.h
@@ -342,7 +342,7 @@ XML_SetEntityDeclHandler(XML_Parser parser,
XML_EntityDeclHandler handler);
/* OBSOLETE -- OBSOLETE -- OBSOLETE
- This handler has been superceded by the EntityDeclHandler above.
+ This handler has been superseded by the EntityDeclHandler above.
It is provided here for backward compatibility.
This is called for a declaration of an unparsed (NDATA) entity.
diff --git a/src/lib/expat/internal.h b/src/lib/expat/internal.h
index dd5454831da..30067ead433 100644
--- a/src/lib/expat/internal.h
+++ b/src/lib/expat/internal.h
@@ -16,7 +16,7 @@
inline - Used for selected internal functions for which inlining
may improve performance on some platforms.
- Note: Use of these macros is based on judgement, not hard rules,
+ Note: Use of these macros is based on judgment, not hard rules,
and therefore subject to change.
*/
diff --git a/src/lib/formats/coco_dsk.c b/src/lib/formats/coco_dsk.c
index 6b05e1ed5ce..6f8f81689a1 100644
--- a/src/lib/formats/coco_dsk.c
+++ b/src/lib/formats/coco_dsk.c
@@ -92,7 +92,7 @@
* there are no extra bytes in front of the sector data.
*
* H. Sector attribute byte
- * This byte is put at the begining of every sector if the header flag
+ * This byte is put at the beginning of every sector if the header flag
* is turned on. The information this byte contains is the same as the
* status register (of the wd179x) would contain when a 'Read Sector'
* command was issued. The bit fields are defined as:
@@ -603,7 +603,7 @@ static FLOPPY_CONSTRUCT(coco_vdk_construct)
*
* Each track begins with a track TOC, consisting of 64 little endian 16-bit
* integers. Each integer has the following format:
- * bit 0-13: Offset from begining of track to 'FE' byte of IDAM
+ * bit 0-13: Offset from beginning of track to 'FE' byte of IDAM
* Note these are always sorted from first to last. All empty
* entries are 0x00
* bit 14: Undefined (reserved)
diff --git a/src/lib/formats/oric_tap.c b/src/lib/formats/oric_tap.c
index 2b8d37f0b16..3f69ab3b034 100644
--- a/src/lib/formats/oric_tap.c
+++ b/src/lib/formats/oric_tap.c
@@ -301,7 +301,7 @@ static int oric_cassette_calculate_size_in_samples(const UINT8 *bytes, int lengt
UINT16 end, start;
LOG_FORMATS("got end of filename\n");
- /* 100 1 bits to seperate header from data */
+ /* 100 1 bits to separate header from data */
for (i=0; i<100; i++)
{
count+=oric_get_bit_size_in_samples(1);
diff --git a/src/lib/formats/td0_dsk.c b/src/lib/formats/td0_dsk.c
index 26ab2815bcc..363d996d633 100644
--- a/src/lib/formats/td0_dsk.c
+++ b/src/lib/formats/td0_dsk.c
@@ -140,7 +140,7 @@ static floperr_t get_offset(floppy_image_legacy *floppy, int head, int track, in
|| (sector < 0) )
return FLOPPY_ERROR_SEEKERROR;
- // position on begining of track data
+ // position on beginning of track data
offs = td0_get_track_offset(floppy, head, track);
// read track header
diff --git a/src/lib/formats/thom_cas.c b/src/lib/formats/thom_cas.c
index e4e404c229c..0ca43d3444e 100644
--- a/src/lib/formats/thom_cas.c
+++ b/src/lib/formats/thom_cas.c
@@ -656,7 +656,7 @@ static casserr_t mo5_k5_load( cassette_image *cass )
K5_FILL_0( 1800 );
}
- /* dump trailing bytes, but also look for beginings of blocks */
+ /* dump trailing bytes, but also look for beginnings of blocks */
if ( pos < size )
{
invalid++;
diff --git a/src/lib/formats/uef_cas.c b/src/lib/formats/uef_cas.c
index c6b7c0fe7f5..3238f455f67 100644
--- a/src/lib/formats/uef_cas.c
+++ b/src/lib/formats/uef_cas.c
@@ -3,7 +3,7 @@
UEF format support (for electron driver)
The UEF format supports gzipped images, i'm doing the gunzip step during uef_cas_to_wav_size
-because that is when the length of the orignal file is known. This is needed to determine
+because that is when the length of the original file is known. This is needed to determine
the size of memory to alloc for the decoding.
Not nice, but it works...