Spelling fixes
This commit is contained in:
@@ -265,7 +265,7 @@ Browse()
|
||||
else if (!strcmp(cmd, "quit")) break;
|
||||
|
||||
else
|
||||
fprintf(stderr, "Unknown command '%s' - ingored.\n", cmd);
|
||||
fprintf(stderr, "Unknown command '%s' - ignored.\n", cmd);
|
||||
}
|
||||
putc(NL, stdout);
|
||||
}
|
||||
|
||||
@@ -248,7 +248,7 @@ PrintStats(
|
||||
int dif_el=0, tot_el=0, tot_data=0, nchars, max_depth=0;
|
||||
float pct;
|
||||
|
||||
fprintf(outfp, "%-22s %s %s\n", "Element name", "Occurrances", "Character Content");
|
||||
fprintf(outfp, "%-22s %s %s\n", "Element name", "Occurrences", "Character Content");
|
||||
fprintf(outfp, "%-22s %s %s\n", "---------------", "-----------", "-----------------");
|
||||
|
||||
acc_tots(top, &tot_el, &tot_data, &max_depth);
|
||||
|
||||
@@ -1072,7 +1072,7 @@ AccumElemInfo(
|
||||
|
||||
case CMD_LINE: /* Llineno */
|
||||
/* These lines come in 2 forms: "L123" and "L123 file.sgml".
|
||||
* Filename is given only at 1st occurance. Remember it.
|
||||
* Filename is given only at 1st occurrence. Remember it.
|
||||
*/
|
||||
if ((cp = strchr(i18nBuf, ' '))) {
|
||||
cp++;
|
||||
|
||||
@@ -81,7 +81,7 @@ typedef struct _Trans {
|
||||
char *gi; /* element name of tag under consideration */
|
||||
char **gilist; /* list of element names (multiple gi's) */
|
||||
char *context; /* context in tree - looking depth levels up */
|
||||
regexp *context_re; /* tree heirarchy looking depth levels up */
|
||||
regexp *context_re; /* tree hierarchy looking depth levels up */
|
||||
int depth; /* number of levels to look up the tree */
|
||||
AttPair_t *attpair; /* attr name-value pairs */
|
||||
int nattpairs; /* number of name-value pairs */
|
||||
|
||||
@@ -1268,7 +1268,7 @@ done:
|
||||
* SkipToChar --
|
||||
*
|
||||
* This function traverses a glob pattern looking for the next
|
||||
* unquoted occurance of the specified character at the same braces
|
||||
* unquoted occurrence of the specified character at the same braces
|
||||
* nesting level.
|
||||
*
|
||||
* Results:
|
||||
|
||||
@@ -834,7 +834,7 @@ Tcl_ErrnoMsg(err)
|
||||
case EPROTO: return "protocol error";
|
||||
#endif
|
||||
#ifdef EPROTONOSUPPORT
|
||||
case EPROTONOSUPPORT: return "protocol not suppored";
|
||||
case EPROTONOSUPPORT: return "protocol not supported";
|
||||
#endif
|
||||
#ifdef EPROTOTYPE
|
||||
case EPROTOTYPE: return "protocol wrong type for socket";
|
||||
@@ -870,7 +870,7 @@ Tcl_ErrnoMsg(err)
|
||||
case ERREMOTE: return "object is remote";
|
||||
#endif
|
||||
#ifdef ESHUTDOWN
|
||||
case ESHUTDOWN: return "can't send afer socket shutdown";
|
||||
case ESHUTDOWN: return "can't send after socket shutdown";
|
||||
#endif
|
||||
#ifdef ESOCKTNOSUPPORT
|
||||
case ESOCKTNOSUPPORT: return "socket type not supported";
|
||||
|
||||
Reference in New Issue
Block a user