Skip to content

Commit fc3908f

Browse files
Fix typos. (#157)
1 parent b31ac48 commit fc3908f

File tree

14 files changed

+25
-25
lines changed

14 files changed

+25
-25
lines changed

inc/inlnPS2.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/* ebx tscache - the top-of-stack item. */
4848
/* */
4949
/* */
50-
/* Rgister conventions within arithmetic functions in the files */
50+
/* Register conventions within arithmetic functions in the files */
5151
/* arith2.c - arith4.c, etc.: */
5252
/* */
5353
/* esi first argument to the function */

inc/inlndos.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/* ebx tscache - the top-of-stack item. */
4848
/* */
4949
/* */
50-
/* Rgister conventions within arithmetic functions in the files */
50+
/* Register conventions within arithmetic functions in the files */
5151
/* arith2.c - arith4.c, etc.: */
5252
/* */
5353
/* esi first argument to the function */

inc/lsptypes.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ typedef struct{
369369
/****************************************************************/
370370

371371
#define GETBYTE(base) (* (base))
372-
/* GETBASEWORD only works if base points to a 32-bit bounday */
372+
/* GETBASEWORD only works if base points to a 32-bit boundary */
373373
#define GETBASEWORD(base, offset) (* ((base)+(offset)))
374374
/* GETWORDBASEWORD works right with base on a 16-bit boundary. */
375375
#define GETWORDBASEWORD(base, offset) (* (((DLword *)(base))+(offset)))
@@ -572,7 +572,7 @@ typedef struct
572572
/****************************************************************/
573573

574574
#define GETBYTE(base) (* (unsigned char *) (3^(UNSIGNED)(base)))
575-
/* GETBASEWORD only works if base points to a 32-bit bounday */
575+
/* GETBASEWORD only works if base points to a 32-bit boundary */
576576
#define GETBASEWORD(base, offset) GETWORDBASEWORD((base),(offset))
577577
#define GETWORDBASEWORD(base, offset) (* (DLword *) (2^(UNSIGNED)((base)+(offset))))
578578
#define GETWORD(base) (* (DLword *) (2^(UNSIGNED)(base)))
@@ -625,7 +625,7 @@ typedef struct
625625
#define GetTypeEntry(address) ( GETWORD(MDStypetbl+((address)>>9)) )
626626

627627
#else
628-
/* Because the 386i's code generator does bettter with them */
628+
/* Because the 386i's code generator does better with them */
629629
/* in this order (does an add, rather than mov-add) */
630630
/* JDS 22-mar-90 */
631631

src/dir.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ void print_finfo(FINFO *fp)
343343
*
344344
* Argument: None.
345345
*
346-
* Value: If suceed, returns 1, otherwise 0.
346+
* Value: If succeed, returns 1, otherwise 0.
347347
*
348348
* Side Effect: FreeFinfoList will point to the alloced area. MAXFINFO will hold
349349
* the total number of allocated instances of FINFO structure.
@@ -386,7 +386,7 @@ int init_finfo() {
386386
*
387387
* Argument: None.
388388
*
389-
* Value: If suceed, returns the id of linked list of FINFO structures,
389+
* Value: If succeed, returns the id of linked list of FINFO structures,
390390
* otherwise -1.
391391
*
392392
* Side Effect: If needed, FinfoArray will be extended according to the value of

src/dsk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3366,7 +3366,7 @@ static int get_versionless(FileName *varray, char *file, char *dir)
33663366
* to which the versionless file is hard linked will
33673367
* be stored.
33683368
* int *highest_p
3369-
* If to_file is the highest versioned file in varrray,
3369+
* If to_file is the highest versioned file in varray,
33703370
* highest_p will point to 1, otherwise, 0.
33713371
*
33723372
* Value: If succeed, returns 1, otherwise, 0.

src/gcmain3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/* */
2828
/* */
2929
/*************************************************************************/
30-
/* Descreption : */
30+
/* Description : */
3131
/* */
3232
/*************************************************************************/
3333
/* \Tomtom */

src/gcoflow.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/* gcmaptable(arg); */
2222
/* */
2323
/*************************************************************************/
24-
/* Descreption : */
24+
/* Description : */
2525
/* */
2626
/*************************************************************************/
2727
/* \Tomtom */

src/gcr.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
/* This function's role is narrowing the gap between the */
2828
/* contextswitch and the subrcall. */
2929
/* In the original Lisp Source, as the contextswitch process may */
30-
/* clear the remain area to FSB,there is no problem in scannig stack*/
31-
/* .But in the subrcall,there isn't such process. */
30+
/* clear the remain area to FSB, there is no problem in scanning */
31+
/* stack. But in the subrcall,there isn't such process. */
3232
/* Therefore, the function is required to set the remain stack area */
3333
/* to FSB. And this function does so. */
3434
/* dogc01() */
@@ -112,7 +112,7 @@ void gcarrangementstack(void) {
112112
/****************************************************************/
113113
/* The following function is the caller that is the reclaimer. */
114114
/* And, this function is same as \DOGC1 in Lisp because in the */
115-
/* C's implimentation the contextswitch is not required for the */
115+
/* C's implementation the contextswitch is not required for the */
116116
/* remaining the system status. */
117117
/****************************************************************/
118118

src/gcrcell.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/* */
2828
/* */
2929
/*************************************************************************/
30-
/* Descreption : */
30+
/* Description : */
3131
/* */
3232
/* The functions "gcreccell" and "freelistcell" are the translated */
3333
/* functions from the Lisp functions "\GCRECLAIMCELL" that is the UFN */

src/gcscan.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/* gcscan2(probe) */
2727
/* */
2828
/*************************************************************************/
29-
/* Descreption : */
29+
/* Description : */
3030
/* */
3131
/* The functions "gcscan1" and "gcscan2" are the translated functions */
3232
/* from the Lisp Functions "\GCSCAN1" & "\GCSCAN2". */
@@ -36,7 +36,7 @@
3636
/* by OPCODES "GCSCAN1" & "GCSCAN2". */
3737
/* */
3838
/* gcscan1 */
39-
/* INPUT : probe (the startng offset in the HTmain table) */
39+
/* INPUT : probe (the starting offset in the HTmain table) */
4040
/* OUTPUT : the entry's offset or NIL (no more entry existing) */
4141
/* */
4242
/* gcscan2 */

0 commit comments

Comments
 (0)